如何从picasso2-okhttp3-downloader获取错误

时间:2017-08-18 14:40:31

标签: android basic-authentication picasso

我正在使用Picasso下载图像并从服务器上显示它们。我需要根据我的要求设置基本的Aucathention。因此,我使用了这个:

'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'

我的代码是:

   String url = "images/download/" + images.getiId();

                OkHttpClient client = new OkHttpClient.Builder()
                  .addInterceptor(new Interceptor() {
                    @Override
                    public Response intercept(Chain chain) throws IOException {

                      Request newRequest = chain.request().newBuilder()
                        .addHeader("user_auth", user_auth)
                        .addHeader("user_password", user_pass)
                        .build();
                      return chain.proceed(newRequest);
                    }

                  })
                  .build();

                Picasso picasso = new Picasso.Builder(context)
                  .downloader(new OkHttp3Downloader(client))
                  .build();

                picasso.load(url)
                  .error(R.drawable.error_icon_128)
                  .into(view);
              }

但每次都无法下载图片我无法从服务器上看到响应代码。我怎样才能看到响应代码?

谢谢。

0 个答案:

没有答案