OkHttp がプロキシを試行し、そのルートが 1 回失敗すると、その後のすべてのリクエストは Android システム プロキシを完全にバイパスします。そのため、Charles を使用してデバッグするのは困難です。
現在、以下のコードがありますが、デバッグ ビルド専用に設定されています。うまく機能しますが、これはハックです。すべてのユーザー向けにリリースする予定です。
見つからない隠し OkHttpClient.dontBypassProxy 設定はありますか? または、以下のコードは良い解決策のように見えますか?
OkHttpClient.Builder baseClientBuilder = new OkHttpClient.Builder().retryOnConnectionFailure(false).connectionPool(new ConnectionPool(5, 20, TimeUnit.SECONDS));
//Ask OkHttp what proxies we have setup
List<Proxy> proxies = ProxySelector.getDefault().select(URI.create("http://www.somesite.com"));
if (proxies.size() > 0 && proxies.get(0) != Proxy.NO_PROXY) {
//Force OkHttp to always use this proxy
baseClientBuilder.proxy(proxies.get(0));
}