Page 1 of 1

Re: Proxy

Posted: Wed Jul 17, 2019 10:26 am
by Chinyaev
Hi!
Here is the code:

Code: Select all

 TempChromium.ProxyType := CEF_PROXYTYPE_FIXED_SERVERS;
TempChromium.ProxyServer := proxy;
TempChromium.ProxyPort := proxyPort;
TempChromium.ProxyUsername := loginProxy;
TempChromium.ProxyPassword := passProxy;

Re: Proxy

Posted: Thu Jul 18, 2019 10:11 am
by salvadordf
Hi,

Sorry for the delay.

The MiniBrowser demo has all the code to set the proxy settings. Please, copy that code to your app and test it with a public proxy that you already tested in your favorite web browser.

https://github.com/salvadordf/CEF4Delph ... .pas#L1053