同胞社区!
所以我有这个简单的请求,使用Retrofit 2
@Headers("Content-Type: application/pdf")
@GET("endpoint/download/{id}")
Call<ResponseBody> downloadPdf(@Header("Authorization") String accessToken, @Path("id") int id);
我也尝试添加@Streaming注释
哪个应触发Web服务器并开始下载
我总是收到错误的HTTP失败:java.io.IOException:Connection上流的意外结束{server_ip_here,proxy = DIRECT @ hostAddress = / server_ip_address cipherSuite = none protocol = http / 1.1}
您是否有一些值得推荐的库或一些线索,为什么会发生这种情况?
谢谢