web-dev-qa-db-ja.com

サポートされていない操作:Android、Retrofit、OkHttp。 OkHttpClientでインターセプターを追加する

Androidでインターセプターを使用して、Retrofit 2.0-beta3およびOkHttpClientを介してトークンベースの認証を追加しようとしています。しかし、OkHttpClientでインターセプターを追加するとUnsupportedOperationExceptionが発生します。

public static TrequantApiInterface getClient(final String token) {
        if( sTreqantApiInterface == null) {

            Log.v(RETROFIT_LOG, "Creating api client for the first time");
            OkHttpClient okClient = new OkHttpClient();

            okClient.interceptors().add(new Interceptor() {
                @Override
                public Response intercept(Interceptor.Chain chain) throws IOException {
                    Request original = chain.request();

                    // Request customization: add request headers
                    Request.Builder requestBuilder = original.newBuilder()
                            .header("Authorization", token)
                            .method(original.method(), original.body());

                    Request request = requestBuilder.build();
                    return chain.proceed(request);
                }
            });

            Retrofit client = new Retrofit.Builder()
                    .baseUrl(baseUrl)
                    .client(okClient)
                    .addConverterFactory(GsonConverterFactory.create())
                    .build();
            sTreqantApiInterface = client.create(TrequantApiInterface.class);
        }
        return sTreqantApiInterface;
    }

そして、私はそれを次のように使用します:

private void ampFreqTest(){
    String token = getSharedPreferences(getString(R.string.preference_file_key), Context.MODE_PRIVATE)
                        .getString(getString(R.string.key_token), "");

    service = ApiClient.getClient(token);
    //I get an exception on this line:
    Call<List<AmpFreq>> call = service.getUserAmpFreq("1");
    call.enqueue(new Callback<List<AmpFreq>>() {
        @Override
        public void onResponse(Response<List<AmpFreq>> response) {
            Toast.makeText(HomeScreen.this, "Got result", Toast.LENGTH_LONG);

            Log.v(ApiClient.RETROFIT_LOG, "Success api client." + response.message());
            Log.v(ApiClient.RETROFIT_LOG, "Success api client.");
        }
        @Override
        public void onFailure(Throwable t) {
            Toast.makeText(HomeScreen.this, t.getMessage() , Toast.LENGTH_LONG);
            Log.v(ApiClient.RETROFIT_LOG, "Fail api client." + t.getMessage() );
        }
    });
}

しかし、私はこのエラーを受け取ります:

Process: com.trequant.usman.trequant_Android, PID: 14400
Java.lang.UnsupportedOperationException at Java.util.Collections$UnmodifiableCollection.add(Collections.Java:932)
 at com.trequant.usman.trequant_Android.api.ApiClient.getClient(ApiClient.Java:41)

新しいインターセプターを追加すると、modifiableCollectionではないがinterceptors()関数のドキュメントには次のように記載されているというエラーが表示されます:/ **

   * Returns a modifiable list of interceptors that observe the full span of each call: from before
   * the connection is established (if any) until after the response source is selected (either the
   * Origin server, cache, or both).
   */

何が間違っていますか?バグでしょうか?

54
Usman khan

この問題は、Retrofit 2.0-beta2Retrofit 2.0-betaに変更すると発生します。 OkHttpClientオブジェクトを作成する場合は、ビルダーを使用する必要があります。

変化する :

 OkHttpClient okClient = new OkHttpClient();

 okClient.interceptors().add(new Interceptor() {
       @Override
       public Response intercept(Interceptor.Chain chain) throws IOException {
            Request original = chain.request();

            // Request customization: add request headers
            Request.Builder requestBuilder = original.newBuilder()
                    .header("Authorization", token)
                    .method(original.method(), original.body());

            Request request = requestBuilder.build();
            return chain.proceed(request);
        }
 });

に:

 OkHttpClient okClient = new OkHttpClient.Builder()
           .addInterceptor(
               new Interceptor() {
                 @Override
                 public Response intercept(Interceptor.Chain chain) throws IOException {
                       Request original = chain.request();

                       // Request customization: add request headers
                       Request.Builder requestBuilder = original.newBuilder()
                               .header("Authorization", token)
                               .method(original.method(), original.body());

                       Request request = requestBuilder.build();
                       return chain.proceed(request);
                   }
               })
           .build();

問題が解決するはずです。

132

他の答えが機能しない場合はこれを試してください:

OkHttpClient okHttpClient = new OkHttpClient.Builder()
    .addInterceptor(new MyInterceptor())
    .build();
retrofit = new Retrofit.Builder()
    .baseUrl("http://google.com")
    .addConverterFactory(GsonConverterFactory.create())
    .client(okHttpClient)
    .build();