facebook 多好友选择器( javascript SDK),计算好友数量
您好,我只是想知道,有什么方法可以知道用户从以下代码生成的多朋友选择器中选择了多少个朋友。
function InviteFriends(){
FB.ui({ method: 'apprequests',
message: 'come on man checkout my application.'});
}
谢谢
Hi i just wanted to know, is there any way to know how many friends the user selects from the multi-friend selector generated by the following code.
function InviteFriends(){
FB.ui({ method: 'apprequests',
message: 'come on man checkout my application.'});
}
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Facebook 将为所有发送的请求发回
request_ids
。因此请求的数量将等于选择的朋友的数量。本教程介绍了如何访问
request_ids
:如何:使用 Facebook Graph API 发送应用程序请求Yes, Facebook will send back the
request_ids
for all the requests sent. so the number of requests would equal the number of friends selected.How to access the
request_ids
is described in this tutorial: How To: Send An Application Request Using The Facebook Graph API