You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request: For our application, we need to call external applications like Voucherify via proxy.
Description:
VoucherifyClient might be extended to optionally support a proxy server in OkHttpClient.
Example Code for OkHttpClient and Proxy:
OkHttpClient client = new OkHttpClient.Builder() .proxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort)))
.proxyAuthenticator(proxyAuthenticator)
.build();
Please inform me, if this would be possible and approximately how long it will take.
Thank you very much in advance.
The text was updated successfully, but these errors were encountered:
Request: For our application, we need to call external applications like Voucherify via proxy.
Description:
VoucherifyClient might be extended to optionally support a proxy server in OkHttpClient.
Example Code for OkHttpClient and Proxy:
OkHttpClient client = new OkHttpClient.Builder()
.proxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort)))
.proxyAuthenticator(proxyAuthenticator)
.build();
Please inform me, if this would be possible and approximately how long it will take.
Thank you very much in advance.
The text was updated successfully, but these errors were encountered: