所以我一直在浏览facebook开发者文档,我已经设法达到用户点击facebook登录按钮并给我发布权限的程度。然后我的功能会发布一些东西到他们的墙上。
我的问题:使用javascript sdk或php sdk,我们的facebook应用程序是否可以发布到所有已授予我应用发布权限的用户的墙上。
我目前的代码:
FB.Event.subscribe('auth.authResponseChange', function(response) {
if (response.status === 'connected') {
testAPI();
} else if (response.status === 'not_authorized') {
FB.login(function(response) {
console.log(response);
},{scope: 'publish_actions'});
} else {
FB.login(function(response) {
console.log(response);
},{scope: 'publish_actions'});
};
});
function postAPI() {
var body = 'We are testing the ability of posting on users behalf.';
FB.api('/me/feed','post',{message:body},function(response){
if (!response || response.error) {
alert('Error occurred');
} else {
console.log('Post ID: ' + response.id);
};
});
};