Skip to content Skip to sidebar Skip to footer

Internet Advertisers And Third-party Cookies - Clarification?

I've read this question about how third party cookie are set , which is a subject I already know : it can be done via three ways : Script (application/javascript)mime type ( which

Solution 1:

When you visit http://www.example.com/glasses, the resources loaded from this page (images, scripts, etc.) are requested with the Referer: http://www.example.com/glasses HTTP header. This way the advertiser knows which page you are on. Of course they can analyze the URL for keywords, or make a request and analyze the HTML, but more often they already know all they need. They know example.com uses their ads, so they often crawl the website with the help of a sitemap.

If the Referer header is not sent (everyone can disable it in their browser), the advertiser can get the URL using JavaScript, which can send cross-origin requests in various ways, including CORS. The script can also get the right keywords instantly by analyzing current page's HTML.

Having the keywords, the advertiser's software will decide which ads you should see. And, by the way, they will create your profile in their database and set you a cookie with your ID, to track your preferences and behavior - and show you more personalized ads in the future.

Post a Comment for "Internet Advertisers And Third-party Cookies - Clarification?"