1

我将 Stetho、Retrofit 和 OkHttp 与 Chrome 开发人员工具一起用于调试目的,似乎一切正常,我看到了我的本地数据库内容,我可以检查我的 UI,但是如果我使用网络检查对我的服务器进行一些 REST 请愿启用请愿书仍为“待处理”,但如果我复制 URL 并粘贴到 Chrome 选项卡上,请愿书会正确执行,但我不知道发生了什么。

在此处输入图像描述

这些是我的 gradle 进口:

compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.9.1'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'

implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
4

1 回答 1

3

我在这里找到了答案 https://github.com/facebook/stetho/issues/346

我不小心使用了常规拦截器而不是网络拦截器。

所以这是我的错误版本

        HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
        logging.setLevel(HttpLoggingInterceptor.Level.BODY);
        OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
        httpClient.addInterceptor(logging);
        httpClient.addInterceptor(new StethoInterceptor());

这是正确的版本:

        HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
        logging.setLevel(HttpLoggingInterceptor.Level.BODY);
        OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
        httpClient.addInterceptor(logging);
        httpClient.addNetworkInterceptor(new StethoInterceptor());
于 2018-02-12T16:52:54.077 回答