我想通过 Javascript 中的 Facebook Api 在我朋友的墙上发布一个帖子,但是当我在“FB.api”中插入“隐私”时,此代码无法正确运行。有人能帮我吗?谢谢你。
var privacy = {value: 'CUSTOM', friends: 'SOME_FRIENDS', allow: '{UID}'};
var privacy2 = JSON.stringify(privacy);
FB.api("/{UID}/feed", 'post', {
message: 'Message',
privacy: privacy2,
}, function(response) {
if (!response || response.error) {
alert(response.error);
} else {
alert('Message sent!');
}
}
);