我有一个包含酒精含量的网站,我已将其注册为 Facebook 应用程序。当我使用图形 API(https://graph.facebook.com/APP_ID?restrictions={"age_distribution":"21+"} or {"type":"alcohol"})设置应用程序限制时,应用程序链接Facebook 对未成年人账户是隐藏的,这很棒。
问题是,当一个以上年龄的人喜欢或分享网站上的一个页面时,他们的未成年朋友可以在以上年龄的人的个人资料墙上看到喜欢。有没有办法从未成年帐户的角度隐藏用户墙上的“喜欢”和“分享”帖子?我已经在其他网站上看到过这样做,但我自己无法复制它。
以下是我在网站上使用的元标记和 javascript 调用:
<meta property="og:title" content="FB Restrictions"/>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="FB Restrictions Site"/>
<meta property="og:description" content="Testing Facebook Age Restrictions"/>
<meta property="fb:app_id" content="MyAppID"/>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'MyAppID', status: true, cookie: true,xfbml: true});
};
(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/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
在此先感谢您的帮助!