我需要快速简单的提示。
我有点想“社交化我的网站”,所以我看了一下 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.[..]"
我想知道“已连接”是否意味着“浏览我的网站”?
谢谢
卢卡
我需要快速简单的提示。
我有点想“社交化我的网站”,所以我看了一下 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.[..]"
我想知道“已连接”是否意味着“浏览我的网站”?
谢谢
卢卡
没有连接意味着他们接受通过您的应用程序与您共享他们的 facebook 数据,方法是单击 FB 应用程序提示的窗口上的“允许”按钮
对于 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>