我需要快速而简单的提示。
我很想'社交我的网站'一点,所以我看了一下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.[..]"
我想知道“连接”是否仅仅意味着“浏览我的网站”?
谢谢
卢卡
答案 0 :(得分:1)
没有连接意味着他们通过点击FB-app提供的窗口上的“允许”按钮,通过您的应用程序与您分享他们的Facebook数据
答案 1 :(得分:1)
对于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>