我正在开发一个我需要假冒用户的Facebook应用程序,因此当你使用Facebook“使用Facebook As”时有一个选项,我需要在我的应用程序中实现相同的功能。
我看到为我拥有的页面检索了访问令牌,但我不明白如何使用以下图表api发布
var body = 'Reading JS SDK documentation';
FB.api('/me/feed', 'post', { message: body }, function (response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});
所以我的问题是如何在这种情况下为api设置访问令牌?
我希望,我的问题很清楚
答案 0 :(得分:1)
使用参数添加它。改变这一行
FB.api('/me/feed', 'post', { message: body }, function (response) {
为...
var my_token = "the access token value";
FB.api('/me/feed', 'post', { message: body, access_token : my_token }, function (response) {