Dear guys:
We have a requirement to use http proxy on Android webview, and we found that the interface of the system only accept server and port without username and password.
Do you have any tips how I can use http proxy with username and password on Android webview (Chromium)?
Following are the codes we use:
System.setProperty("http.proxyHoxyHost", host);
System.setProperty("http.proxyPoxyPort", port + "");
System.setProperty("https.proxyHoxyHost", host);
System.setProperty("https.proxyPoxyPort", port + "");
Thanks a lot!
Best Regards
Huang Gao
Thanks a lot!
Best Regards
Huang Gao
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/353bfdc4-4cd3-4f68-8e39-c1ad6c946a2a%40chromium.org.
Hello, Richard:
Thank you very much for your reply!
So before the official solution is released on Android, do I have any bypass method to do this work, such as use Java reflection or native hook to setup the username and password of https proxy in Chromium?
Best Regards
Huang Gao