0

我在我的页面上添加了一个赞按钮,这意味着在特定用户的时间线上显示每个赞。

尽管当用户点击喜欢并确认(因为它是一个新站点)“喜欢”时,除了它在页面上的“喜欢”按钮上显示“名称喜欢这个”之外什么都没有发生。用户 Facebook 时间线或个人资料中没有任何内容。

Facebook 调试器不会报告任何错误。这让我很难告诉我为什么它不在时间线上分享。所以我现在不知道该怎么做或更正。

任何曾经在这个地方的人的见解将不胜感激。

    <meta property="fb:app_id" content="MY_APP_ID" />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="https://www.MY_URL.se/" />
    <meta property="og:image" content="http://www.MY_URL.se/folder/fbLike.png" />
    <meta property="og:title" content="MY_URL.se - PAGE TITLE" />
    <meta property="og:site_name" content="SITE_NAME" />
    <meta property="og:description" content="DESCRIPTION" />

    <div id="fb-root"></div>
    <script>(function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "//connect.facebook.net/sv_SE/all.js#xfbml=1";
    fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
    </script>

    <div class="fb-like" data-href="https://www.MY_URL.se/" data-width="100" data-show-faces="false" data-send="false" style="position: absolute; z-index:5; margin-top: 40px; margin-left: 335px;"></div>
4

3 回答 3

0

So, i have come to the conclusion that since the update to the "new" timeline in Facebook, an like with no attached comment will not be displayed in the users timeline/activity feed.

When the user includes an comment during the Like click, it will be shown (This is only based on theory, i haven't been able to actually confirm this yet).

于 2013-08-15T11:24:41.007 回答
0

确认不会出现在新网站上,如果您没有使用应用程序 ID(这里就是这种情况),或者检测到垃圾邮件行为,它通常会出现。尝试使用一个应用程序,只需在生成器中选择它:https ://developers.facebook.com/docs/reference/plugins/like/

这可能是解决方案,但为了使其更明显,用户也必须添加评论。

于 2013-08-14T13:56:50.543 回答
0

如果页面没有正确的打开图形标签,则可能会发生这种情况,并且可以通过在此处检查它们来修复它们。https://developers.facebook.com/tools/debug/

于 2015-06-08T17:47:11.273 回答