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.
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")
- also the base url of the api should end with
"/"
- if using an
Authorization
header check if you need to set the value as"Bearer " + token
instead
using retrofit 2.4.0 version:
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.4.0</version>
</dependency>
来源:https://stackoverflow.com/questions/35132330/retrofit-too-many-follow-up-requests-21