facebook 多好友选择器( javascript SDK),计算好友数量

发布于 2024-11-02 14:51:14 字数 218 浏览 0 评论 0原文

您好,我只是想知道,有什么方法可以知道用户从以下代码生成的多朋友选择器中选择了多少个朋友。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏闹i 2024-11-09 14:51:14

是的,Facebook 将为所有发送的请求发回 request_ids。因此请求的数量将等于选择的朋友的数量。

本教程介绍了如何访问 request_ids如何:使用 Facebook Graph API 发送应用程序请求

FB.ui({
    method: 'apprequests',
    message: 'Check out this application!',
    title: 'Send your friends an application request',
},
function (response) {
    if (response && response.request_ids) {
        // response.request_ids is what you need
    } else {
        alert('canceled');
    }
});

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

FB.ui({
    method: 'apprequests',
    message: 'Check out this application!',
    title: 'Send your friends an application request',
},
function (response) {
    if (response && response.request_ids) {
        // response.request_ids is what you need
    } else {
        alert('canceled');
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文