【发布时间】:2019-12-24 12:52:37
【问题描述】:
我正在开发一个带有一些端点的应用程序。总之,当已填充正文时,补丁请求不会回调,并且会出现超时错误。此事件仅适用于补丁请求,其他方法(如 GET、POST、PUT 和 DELETE)工作正常。另一件事是这些端点在 Postman 中都可以正常工作。
我的一项服务
public interface ApiService {
@Headers({"Accept: application/json;version=0.1.1",
"Content-Type: application/json; charset=utf-8"})
@PATCH("api/club/product/{id}/")
Call<ResponseBody> requestEditProducts(@Header ("Authorization") String token,
@Body RequestBody body,
@Path("id") int id);
}
客户端类
public class RetrofitClient {
private static Retrofit retrofit = null;
public static Retrofit getInstance() {
if (retrofit == null) {
HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
logging.setLevel(HttpLoggingInterceptor.Level.BODY);
OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
httpClient.addInterceptor(logging);
httpClient.connectTimeout(120, TimeUnit.SECONDS);
httpClient.callTimeout(120, TimeUnit.SECONDS);
httpClient.readTimeout(120, TimeUnit.SECONDS);
httpClient.writeTimeout(120, TimeUnit.SECONDS);
httpClient.retryOnConnectionFailure(true);
retrofit = new Retrofit.Builder()
.baseUrl(Consts.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.client(httpClient.build())
.build();
}
return retrofit;
}
}
一个调用示例
JSONObject object = new JSONObject();
try {
object.put("name", "new name");
} catch (JSONException e) {
e.printStackTrace();
}
RequestBody requestBody = RequestBody.create(okhttp3.MediaType.parse("application/json; charset=utf-8"), object.toString());
Call<ResponseBody> call = RetrofitClient.getInstance().create(ApiService.class)
.requestEditProducts(token, requestBody, id);
call.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
Log.d("PATCH_REQUEST", "code: " + response.code() +
" body: " + response.body());
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
t.printStackTrace();
}
});
一次调用结果
D/OkHttp: --> PATCH http://beta.nsme.com/api/club/product/9/
D/OkHttp: Content-Type: application/json; charset=utf-8
D/OkHttp: Content-Length: 41
D/OkHttp: Accept: application/json;version=0.1.1
D/OkHttp: Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxx
D/OkHttp: {"name":"new name"}
D/OkHttp: --> END PATCH (41-byte body)
D/OkHttp: <-- HTTP FAILED: java.net.SocketException: Socket closed
W/System.err: java.io.InterruptedIOException: timeout
W/System.err: at okhttp3.internal.connection.Transmitter.timeoutExit(Transmitter.java:109)
W/System.err: at okhttp3.internal.connection.Transmitter.maybeReleaseConnection(Transmitter.java:302)
W/System.err: at okhttp3.internal.connection.Transmitter.noMoreExchanges(Transmitter.java:267)
W/System.err: at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:237)
W/System.err: at okhttp3.RealCall$AsyncCall.execute(RealCall.java:172)
W/System.err: at okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
W/System.err: at java.lang.Thread.run(Thread.java:818)
W/System.err: Caused by: java.net.SocketException: Socket closed
W/System.err: at libcore.io.Posix.recvfromBytes(Native Method)
W/System.err: at libcore.io.Posix.recvfrom(Posix.java:185)
W/System.err: at libcore.io.BlockGuardOs.recvfrom(BlockGuardOs.java:250)
W/System.err: at libcore.io.IoBridge.recvfrom(IoBridge.java:553)
W/System.err: at java.net.PlainSocketImpl.read(PlainSocketImpl.java:485)
W/System.err: at java.net.PlainSocketImpl.access$000(PlainSocketImpl.java:37)
W/System.err: at java.net.PlainSocketImpl$PlainSocketInputStream.read(PlainSocketImpl.java:237)
W/System.err: at okio.Okio$2.read(Okio.java:140)
W/System.err: at okio.AsyncTimeout$2.read(AsyncTimeout.java:237)
W/System.err: at okio.RealBufferedSource.indexOf(RealBufferedSource.java:358)
W/System.err: at okio.RealBufferedSource.readUtf8LineStrict(RealBufferedSource.java:230)
W/System.err: at okhttp3.internal.http1.Http1ExchangeCodec.readHeaderLine(Http1ExchangeCodec.java:242)
W/System.err: at okhttp3.internal.http1.Http1ExchangeCodec.readResponseHeaders(Http1ExchangeCodec.java:213)
W/System.err: at okhttp3.internal.connection.Exchange.readResponseHeaders(Exchange.java:115)
W/System.err: at okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:94)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:43)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:117)
W/System.err: at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:94)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:117)
W/System.err: at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:88)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:117)
W/System.err: at okhttp3.logging.HttpLoggingInterceptor.intercept(HttpLoggingInterceptor.java:212)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:142)
W/System.err: at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:117)
W/System.err: at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:229)
W/System.err: ... 5 more
【问题讨论】:
-
requestEditProducts 和patchMessage 是不同的调用。您能否在示例中发布相同的请求。另外我猜你需要你的 Auth 令牌来进行 patchMessage 请求
-
我弄错了对不起。帖子已被编辑。不幸的是,后端人员不让我分享令牌和网址@EugeneTroyanskii
-
这里有 3 个参数 requestEditProducts(@Header ("Authorization") String token, @Body RequestBody body, @Path("id") int id);当你调用这个方法时,你只放了 2 requestEditProducts(requestBody, id);你不能编译这个。
-
啊,你是对的,我忘了。编辑。非常感谢发现错误@EugeneTroyanskii
-
邮递员能用吗?