Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Weather App (2015) Networking Making an HTTP GET Request with OkHttp

Justin Cannon
Justin Cannon
3,465 Points

Confused about different constructor designs.

We construct the OkHttpClient with the vanilla constructor:

   new OkHttpClient()

Then we construct a Request with a class method called Builder. (Is that a class method? Not sure.)

   new Request.Builder().url(URL).build()

Then we construct a Call with a client object method.

   client.newCall(request)

I was hoping someone could help me understand the difference and appropriate cases for all three design patterns. I'm also happy to be pointed to a good resource. Thanks!

Justin Cannon
Justin Cannon
3,465 Points

To clarify - why wasn't the Request constructor designed to just take a URL, like this:

 Request request = new Request(url);