If-None-Match在我的请求中没有通过

时间:2016-03-10 02:12:57

标签: android caching retrofit2 okhttp3

我已经看到了关于这个主题的长期讨论,并声称在2.3.0中已经修复。 这是我正在使用的组合

compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'

compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'

compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'

compile 'com.squareup.okhttp3:okhttp:3.2.0'

日志我看到反对收到的回复,有Etag;但我后来的请求并没有在其标题中传递If-None-Match。 我通过我的代码显式插入If-None-Match来测试它,缓存工作和响应是预期的。所以我使用的库版本肯定有问题,或者我的代码不太好。

我在这里设置okClient。

HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor();
        httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.HEADERS);

        okhttp3.OkHttpClient okClient = new okhttp3.OkHttpClient.Builder()
                .addInterceptor(new HeaderInterceptor())
                .addInterceptor(httpLoggingInterceptor)
                .cache(createCacheForOkHTTP())
                .connectTimeout(5, TimeUnit.MINUTES)
                .readTimeout(5, TimeUnit.MINUTES)
                .build();

        retrofit = new Retrofit.Builder()
                .baseUrl(AppConfig.API_URL)
                .addConverterFactory(GsonConverterFactory.create())
                .client(okClient)
                .build();

我的标头拦截器包含了几乎专注于我自己的API的逻辑。这是

private class HeaderInterceptor
            implements Interceptor {


        private String generateAuthHeader(AuthResponse accessToken) {
            if (accessToken == null) {
                return "";
            }
            return String.format("Bearer %s", accessToken.getAccessToken());
        }

        @Override
        public okhttp3.Response intercept(Chain chain)
                throws IOException {
            Request request = chain.request();
            final String authorizationValue = generateAuthHeader(runtime.getPrefAccessToken());
            if (!TextUtils.isEmpty(authorizationValue)) {
                request = request.newBuilder()
                        .addHeader(AppConfig.API_KEY_AUTHORIZATION, authorizationValue)
                        .addHeader(AppConfig.API_KEY_ACCEPT, AppConfig.API_ACCEPT)
                        .build();
                //.addHeader("If-None-Match", "a69385c6d34596e48cdddd3ce475d290")
            } else {
                request = request.newBuilder()
                        .addHeader(AppConfig.API_KEY_CONTENT_TYPE, AppConfig.API_CONTENT_TYPE)
                        .addHeader(AppConfig.API_KEY_ACCEPT, AppConfig.API_ACCEPT)
                        .build();
            }
            okhttp3.Response response = chain.proceed(request);
            return response;
        }

    }

以下是我正在设置缓存的方法。

 private Cache createCacheForOkHTTP() {
        Cache cache = null;
        cache = new Cache(App.getInstance().getBaseContext().getCacheDir(), 1024 * 1024 * 10);
        return cache;
    }

寻找一些快速有效的回应,因为我已经花了合理的时间找到解决方案,但没有运气。

由于

1 个答案:

答案 0 :(得分:0)

您的代码似乎正在运行,我还没有尝试过,但几周前我遇到了同样的问题。事实证明,这是因为改造日志没有显示if-none-match标头。但是当我尝试使用代理拦截请求并首先将请求重定向到我的笔记本电脑时(我正在使用mitmproxy应用程序),出现了if-none-match标头。

无论如何,如果你在这个方法/okhttp3/internal/http/CacheStrategy.java中查看private CacheStrategy getCandidate(),你会发现OkHttp3实际上正在使用etag& if-none-match标头正确。

希望这澄清。