Quantcast
Viewing latest article 2
Browse Latest Browse All 2

Android Retrofit GET request ConversionException issue

I'm using Retrofit to make REST requests and create the corresponding model objects (with gson using the @SerializedName annotation). There is one particular GET request that occasionally causes a ConversionException though, and I am having trouble tracking down the cause. I will make 10-20 similar GET requests nearly at the same time with varying parameters and about 90% of them return correctly. The remaining fail with a ConversionException:

retrofit.converter.ConversionException: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1

Once this conversion exception has occurred, any time I try to make that request again (without killing the app) it will always have the same conversion exception. If I kill the app and start completely fresh, it will probably work.

I've tried looking at the json response in the browser for requests that had this conversion exception, but it always looks correct. I've done many comparisons between "failed" requests and successful ones and the json looks identical.

My questions:

1) Why are these conversion exceptions occurring, when as far as I can tell, the response data is always correct?

2) Does retrofit do any sort of caching for GET requests? This might explain why re-requesting a failed request continues to fail until I kill and restart the application.

Thanks!


Viewing latest article 2
Browse Latest Browse All 2

Trending Articles