如何使用发布限制的帖子输入?

时间:2011-09-17 15:57:04

标签: facebook post

enter image description here

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;
    }
);

不工作

1 个答案:

答案 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);
  }
});