How to get the full referring exact page URL from subdomain (abc.example.com) to www.example.com using HTTP context in C#?
Example:
First I am going to visit – https://abc.example.com/page1/category1 Then navigate and lading to this --> www.example.com/page
In this case, I need to get this URL (referrer) https://abc.example.com/page1/category1 from HTTP context or any other way in C#. Reviewing the documentation for Referrer-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) it seems my only option is to set it to unsafe-url (HTTP).
I need the ability to track the full referring page when navigates from abc.example.com to www.example.com. Is that possible?