How do I make the Facebook "Like" button not track my users?

facebook, facebook-like

Solution

You can't simulate a like without permissions and use of Facebook API. But you can use the global Facebook sharing link to make a user share a link without any javascript of them on your site. You just have to customize it:

http://www.facebook.com/sharer.php?u=<url to share>&t=<title of content>

Problem

I want to have a Facebook "Like" button on one of my pages, but the organization I work for has trepidation concerning the privacy implications of allowing Facebook to keep track of all the users who visit my site. The typical Like button, as provided by Facebook, is written in JavaScript that is served from the Facebook website. In theory, and quite likely in practice, this allows Facebook to track all users of my site - many of whom are not even Facebook users. Thus, rather than use the script that Facebook provides and hosts, I would like to simply host an image from my server, and, when the user clicks "Like", they would be redirected to some URL on the Facebook site which would enable them to do whatever it is they need to do to complete the "Like" process. Is such a process currently supported by Facebook? Does anyone have any experience doing anything similar to this?

Original source