我正在尝试使用 FB JS API 发表评论。
FB.api("/" + myFBPageId + "/comments", "post", {
"fb:explicitly_share": true
"message": contents
}, function(response) { console.log(response) })
不幸的是,即使我同时拥有 publish_actions 和 publish_stream 权限,我还是得到了这个异常:
"message":"(#200) Permissions error","type":"OAuthException","code":200
嗯什么?为什么?我已经测试过,并且在网站上通过 FB 进行了身份验证。我只是仔细检查了这个:
FB.login(function(response) {
console.log(response);
}, {scope: 'publish_stream'});
所以我的问题是,这里的权限错误是什么?我如何解决它?