Looking for a solution to modify the referer in EO.WebBrowser.
I know you can change the User-Agent using: webView1.CustomUserAgent
, but it seems there isn't a direct method for changing the referrer. Are there any alternative approaches to achieve this, perhaps through JavaScript or another method?
I've tried capturing the beforesendheaders event with:
webView1.BeforeSendHeaders += new EO.WebBrowser.RequestEventHandler(webView1_BeforeSendHeaders);
, but it hasn't been very helpful.
I initially started working on a project with awesomium, but I encountered issues where some websites weren't loading and displaying only a blank screen. While I was able to change both the referer and user agent in awesomium, I require both functionalities to proceed.
Any ideas or suggestions would be greatly appreciated.