我正在尝试向用户发布“活动提要”,但我不明白如何。
这是我的演示应用程序:http: //bazaar-market.co.uk/facebook_test/car.html
您可以查看源代码以查看所有代码,因为它都是 HTML。
<script type="text/javascript">
function postView()
{
FB.api(
'/me/fandango-auctions:view',
'post',
{ item : 'http://bazaar-market.co.uk/facebook_test/car.html' },
function(response) {
if (!response || response.error) {
alert("Error");
} else {
alert('View was successful! Action ID: ' + response.id);
}
console.log(response);
});
}
</script>
我收到错误消息:
必须使用应用程序 access_token 调用此方法
如果我在应用程序的设置中禁用 access_token,那么它会说:
您必须使用 access_token 访问用户帐户详细信息
任何人都可以帮忙吗?