Open links in new tab
  1. Comparison of Android networking libraries: OkHTTP, Retrofit, and ...

    Update: There are plenty of very good changes in Retrofit 2.0.0-beta2 version 1.6 of Retrofit with OkHttp 2.0 is now dependent on Okio to support java.io and java.nio which makes it much easier to access, …

  2. Retrofit 2.0 how to get deserialised error response.body

    Sep 11, 2015 · @MartyMiller this was done for the following version of retrofit Retrofit 2.0-beta2

  3. java - How to setup Retrofit with no baseUrl - Stack Overflow

    Doesn't this still require you to setup RetroFit with a Base URL (that gets ignored on this particular call)? When I forced all my calls to have URLs as parameters and remove the Base URL, it still threw an …

  4. Unable to create converter for my class in Android Retrofit library

    Sep 3, 2015 · I'm migrating from using Volley to Retrofit, I already have gson class that I used before for converting JSONObject response to a object that implements gson annotations. When I'm trying to …

  5. POST Multipart Form Data using Retrofit 2.0 including image

    Jan 2, 2016 · 25 I used Retrofit 2.0 for my register users, send multipart/form File image and text from register account In my RegisterActivity, use an AsyncTask

  6. Refreshing OAuth token using Retrofit without modifying all calls

    Mar 17, 2014 · We are using Retrofit in our Android app, to communicate with an OAuth2 secured server. Everything works great, we use the RequestInterceptor to include the access token with each …

  7. How to POST raw whole JSON in the body of a Retrofit request?

    This question may have been asked before but no it was not definitively answered. How exactly does one post raw whole JSON inside the body of a Retrofit request? See similar question here. Or is t...

  8. How to pass GET parameters to Retrofit request - Stack Overflow

    Mar 15, 2018 · How to pass GET parameters to Retrofit request Asked 7 years, 9 months ago Modified 6 years, 4 months ago Viewed 17k times

  9. How can I debug my retrofit API call? - Stack Overflow

    Aug 12, 2017 · Did you add client for retrofit by using this Retrofit#client (client)? Yes, I did add the .client(client) to the chain where I am building my Retrofit object Because OkHttp is designed at …

  10. Sending JSON in POST request with Retrofit2 - Stack Overflow

    Nov 26, 2016 · 1 From Retrofit 2+ use POJO objects rather than a JSON Object for sending requests with @Body annotations. With JSON object being sent the request fields are set to their default value …