0
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;
}
);
不工作