FB.ui({ method: 'feed',
name: name,
link: 'http://apps.facebook.com/my-app/',
picture: 'app-picture',
caption: 'this is only for me',
privacy: { value: 'SELF' }},
function(response) {
if (response && response.post_id) {
// Post was published
alert('Post was published.');
} else {
alert('Post was not published.');
}
return true;
}
);
不工作
答案 0 :(得分:1)
解决:
FB.api('/me/feed', 'post', {
message: 'message',
name: 'name test',
caption: 'caption',
privacy: { 'value':'CUSTOM','friends':'SELF'} },
function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});