exexzian
exexzian

Reputation: 7880

How to verify Do Not Track (DNT) in HTTP request headers?

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 enter image description here

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

Answers (1)

Julian Reschke
Julian Reschke

Reputation: 42075

"DNT" is fully advisory. The browser does nothing besides sending it; it's up to the servers to process it.

Upvotes: 2

Related Questions