Reputation: 7880
I am setting DNT value in HTTP request header by doing this:
request.setRequestHeader("DNT","1");
and I can see this in dev tools network tab as well
but is there any other way to verify this on UI or console logs which will demonstrate how and which specific sources (like scripts) of websites were not allowed to track the user.
Upvotes: 1
Views: 1932
Reputation: 42075
"DNT" is fully advisory. The browser does nothing besides sending it; it's up to the servers to process it.
Upvotes: 2