网站应用年龄限制喜欢和分享

时间:2011-11-21 20:58:53

标签: javascript facebook-graph-api facebook-like facebook-apps

我有一个含有酒精含量的网站,我已将其注册为Facebook应用程序。当我使用图形API(https://graph.facebook.com/APP_ID?restrictions={"age_distribution":"21+“}或{”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>

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

根据Facebook's User Restrictions Documentation,您可以在您尝试限制的网页上使用以下Open Graph元标记来执行此操作:

按年龄限制

<meta property="og:restrictions:age" content="21+"/>

您还可以使用以下方法设置基于内容的酒精限制:

<meta property="og:restrictions:content" content="alcohol"/>

此外,您还可以设置国家/地区限制:

<meta property="og:restrictions:country:allowed" content="US" />

<meta property="og:restrictions:country:disallowed" content="CN" />

*请注意,标记中只能有一个:allowed或一个:disallowed实例。