传递给FB.ui()调用的回调函数的数据是什么?

时间:2012-08-02 21:09:10

标签: javascript facebook facebook-javascript-sdk

所以the documentation显示了这一点:

FB.ui(
  {
    method: 'feed',
    name: 'Facebook Dialogs',
    link: 'https://developers.facebook.com/docs/reference/dialogs/',
    description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
  },
  function(response) {
    if (response && response.post_id) {
      alert('Post was published.');
    } 
  }
);

那很好。但我找不到任何关于传递给回调函数的response变量中的内容的文档。有记录吗?具体来说,我想要一种方法来检索链接刚刚“共享”的用户数量。 虽然上面的代码使用了“Feed”方法,但我使用的是“发送”方法。

1 个答案:

答案 0 :(得分:0)