Facebook Graph API Object_id

时间:2014-09-03 12:50:01

标签: facebook-graph-api facebook-javascript-sdk facebook-apps

我需要向所选朋友列表发送一个URL。我使用以下代码:

// Use FB.ui to send the Request(s)
   FB.ui({method: 'apprequests',
   to: sendUIDs,
   action_type:'send',
   title: 'testing',
   message: 'testing send.',
   **object_id: 'YOUR_OBJECT_ID'**
   }, callback);

我不确定object_id是什么。任何人都可以解释一下吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

根据转化here,无法获得完整的用户列表。您可以获得未使用该应用的invitable_friends或使用该应用的朋友。

在某一点上,我想到将两个列表结果组合起来并使用它,但invitable_friends不会返回用户的实际ID。它为每个用户发送一个临时令牌,可用于仅发送apprequest。

我希望这将有助于将来。

感谢@ CBroe的支持。