Like button and privacy concern

為{幸葍}努か 提交于 2019-12-03 14:10:01

For me, the ultimate solution is how the German news portal heise.de implemented it.

Unfortunately it's all in German, but their solution is to show a dummy picture before instead and allow the user to selectively allow it for the whole site. See the article in German or Google translation to English.

This created quite some user interested (German article, Google translation to English) and has already called Facebook (presumably from Germany) on the plan, as they wrote in their article, that it is against their policy to use their button in they way they did.

Update:

And now it hit Slashdot: Heise's 'Two Clicks For More Privacy' vs. Facebook

The edge.create callback doesn't include the user ID; it just notifies you of which Like button was clicked. Unless the user has given you their details some other way, there's no way to determine from Facebook who the user is from either the presence of a Like button or from the user Clicking on it.

Facebook's FAQ item about what information is collected by Facebook when users view Like buttons but don't interact with them is here: https://www.facebook.com/help/?faq=186325668085084

To answer your specific questions:

  1. I'm not sure how to do this without it being a jarring user experience. Effectively, you're describing a solution where you want to offer Facebook Like functionality, but make the user click something first saying 'I want to see the Facebook Like buttons'

  2. You can access the current Like count for any URL or object in the Graph API at https://graph.facebook.com/, for example, a call to https://graph.facebook.com/facebook returns the following information (in JSON format):

    {
       "id": "20531316728",
       "name": "Facebook",
       "picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/174597_20531316728_2866555_s.jpg",
       "link": "https://www.facebook.com/facebook",
       "likes": 51545712,
       "category": "Product/service",
       "website": "http://www.facebook.com/\n",
       "username": "facebook",
    [...]
    

the likes field there isn't exactly the number which would be displayed on a Like button, but it's a good number to start from. (The actual number on the Like button also includes other statistics, as mentioned on https://developers.facebook.com/docs/reference/plugins/like/ )

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!