我的申请被授予' publish_actions'授权是将内容发布到用户的墙上,但用户的朋友没有看到帖子。
我的应用程序由Facebook在应用审核部分授权 具有此状态"已批准:publish_actions"
我的javascript帖子格式和操作:
FB.login(function () {
FB.api('/me/feed', 'post', {
message: contents.description,
link: link + '?context=' + new Date().getTime(),
picture: imageURL,
name: some text,
caption: contents.caption,
description: contents.defaultDescription
}, function (response) {
if (response.error) {
console.error(response.error.message)
}
console.log(response)
});
}, { scope: 'publish_actions' });