Hello!
Please, help me to solve the question.
How can i recieve/GET all request headers when i do Chromium1.LoadURL(AnURL); ?
Thank you!
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.
How to get request headers
- salvadordf
- Posts: 4571
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: How to get request headers
Hi,
Use the TChromium.OnBeforeResourceLoad event to inspect the request as you can see here :
https://github.com/salvadordf/CEF4Delph ... r.pas#L470
Use the TChromium.OnBeforeResourceLoad event to inspect the request as you can see here :
https://github.com/salvadordf/CEF4Delph ... r.pas#L470
-
- Posts: 44
- Joined: Sun Jul 07, 2019 1:46 pm
Re: How to get request headers
Thank you, Salvador!