I'm using retrofit to make requests.
I've got following error:
java.net.ProtocolException: Too many follow-up requests: 21
The code is like below:
private OkHttpClient httpClient; private CookieManager cookieManager; public <S> S createCookieService(Class<S> serviceClass) { httpClient.interceptors().clear(); httpClient.setCookieHandler(cookieManager); Retrofit.Builder builder = new Retrofit .Builder() .client(httpClient) .baseUrl(url) .addConverterFactory(GsonConverterFactory.create()); Retrofit retrofit = builder.client(httpClient).build(); return retrofit.create(serviceClass); }
And then I'm making requests:
example:
1) login
@POST("/login") Call<User> login();
2) some request:
@GET("/request") Call<PojoPojo> getPojo();
And I'm getting this error too many follow-up requests: 21.
Please help.
Typically this happens when you get into a redirect loop, or when you authenticate with the wrong username, and then retry with the same wrong username. You can fix your Authenticator to check if it is a follow-up request and not retry in that case.
Interceptors, according to the documentation, are a powerful mechanism that can monitor, rewrite, and retry the API call. So, when we make an API call, we can either monitor it or perform some tasks. In a nutshell, Interceptors function similarly to airport security personnel during the security check process.
Jake Wharton wrote:
This gets thrown (by OkHttp, not Retrofit) when there are more than 20 redirects when calling an endpoint. Usually this indicates a redirect cycle between two endpoints. Both Chrome and Firefox will also stop loading the request after this many redirects and fail the request.
You need to consult with your server team or endpoint documentation to ensure you are passing the correct data directly to the endpoint you want to call. No action for Retrofit to take here.
And rest of the thread is there: https://github.com/square/retrofit/issues/1561
For me the issue was: the request url was starting with "/"
.
Replace url @GET("/request")
with @GET("request")
"/"
Authorization
header check if you need to set the value as "Bearer " + token
insteadusing retrofit 2.4.0 version:
<dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>2.4.0</version> </dependency>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With