facebook 脸堆提示

发布于 2024-11-01 13:54:55 字数 283 浏览 0 评论 0原文

我需要快速简单的小费。

我很想“让我的网站社交化”一点,所以我看了一下 Facebook Facepile 社交插件的定义:

"[..] If the user does not have friends who have liked your page or have connected to your site, no faces will be shown.[..]"

我想知道“连接”是否意味着“浏览我的网站”?

谢谢卢卡

I need fast&easy tip.

I'm tempted to 'socialize my website' a little,so I gave a look to facebook facepile social plugin definition:

"[..] If the user does not have friends who have liked your page or have connected to your site, no faces will be shown.[..]"

I was wondering if "connected" meant just "browsing my website"?

Thanks

Luca

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绳情 2024-11-08 13:54:55

未连接意味着他们同意通过您的应用程序通过单击 FB 应用程序提示的窗口上的“允许”按钮与您共享其 Facebook 数据

No connected means that they accepted to share their facebook data with you through your application by clicking on the "allow" button on the window promted by the FB-app

丘比特射中我 2024-11-08 13:54:55

对于 Facebook 应用程序,您可以这样做。

<script>
  function fbLoginStatus(response) {
    if (response.status != 'unknown') {
     $('.facebook_facepile').show(); // show your facepile iframe 
    }
  }
  window.fbAsyncInit = function() {
    FB.init({appId: 'YOUR_APP_ID', status: true, cookie: true, xfbml: true});
    FB.getLoginStatus(fbLoginStatus);
    FB.Event.subscribe('auth.statusChange', fbLoginStatus);
  };
  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());
</script>

For facebook application you can do this.

<script>
  function fbLoginStatus(response) {
    if (response.status != 'unknown') {
     $('.facebook_facepile').show(); // show your facepile iframe 
    }
  }
  window.fbAsyncInit = function() {
    FB.init({appId: 'YOUR_APP_ID', status: true, cookie: true, xfbml: true});
    FB.getLoginStatus(fbLoginStatus);
    FB.Event.subscribe('auth.statusChange', fbLoginStatus);
  };
  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文