Open Z644912187 opened 8 years ago
new OkHttpClient.Builder() .dns(new HttpDns()) .addInterceptor(new HeadInterceptor()) .addInterceptor(new TokenInterceptor()) .readTimeout(TIME_OUT, TimeUnit.MILLISECONDS) .cache(cache) .build(); new HttpDns() lookup 正常返回List,但是最终发出去的请求并没有被替换host,这是为什么
可以在Interceptor 与 networkInterceptor中 打断点调测一下。不太明白你的Host是什么意思,本来HTTP请求就不用替换Host。
new OkHttpClient.Builder() .dns(new HttpDns()) .addInterceptor(new HeadInterceptor()) .addInterceptor(new TokenInterceptor()) .readTimeout(TIME_OUT, TimeUnit.MILLISECONDS) .cache(cache) .build(); new HttpDns() lookup 正常返回List,但是最终发出去的请求并没有被替换host,这是为什么