• DaveA
    link
    fedilink
    English
    arrow-up
    42
    ·
    16 days ago

    It doesn’t have to be. Your browser sends the cookies for a domain with every request to that domain. So you have a website example.com, that embeds a Facebook like button from Facebook.com.

    When your browser downloads the page, it requests the different pieces of the page. It requests the main page from example.com, your browser sends any example.com cookies with the request.

    Your browser needs the javascript, it sends the cookie in the request to get the JavaScript file. It needs the like button, it sends a request off to Facebook.com and sends the Facebook.com cookies with it.

    Note that the request to example.com doesn’t send the cookies for Facebook.com, and the request to Facebook.com doesn’t send the cookie for example.com to Facebook. However, it does tell Facebook.com that the request for the like button came from example.com.

    Facebook puts an identifier in the cookie, and any request to Facebook sends that cookie and the site it was loaded on.

    So you log in to Facebook, it puts an identifier in your cookies. Now whenever you go to other sites with a Facebook like button (or the Facebook analytics stuff), Facebook links that with your profile.

    Not logged in? Facebook sets an identifier to track you anyway, and links it up when you make an account or log in.

    • intensely_human@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      ·
      15 days ago

      How is Facebook able to know what site is requesting it? Is it in the referer header, or is it parameters in the javascript/image url?

      • DaveA
        link
        fedilink
        English
        arrow-up
        2
        ·
        15 days ago

        There is a referer header sent, but depending on the exact code added to the page, it’s very likely they are loading a snippet of JavaScript that lets them collect other information and trigger their own sending of information to their server.

        For example, Google Analytics has javascript added to the page, but loading fonts from Google’s CDN (which many sites do) will rely on the referer.