Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Proxy

Post Reply
Chinyaev
Posts: 38
Joined: Mon Mar 13, 2017 3:23 pm

Re: Proxy

Post 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;
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Proxy

Post 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
Post Reply