如何获取我所有的 facebook 应用程序用户?

发布于 2024-10-30 12:00:19 字数 57 浏览 0 评论 0原文

我想获取已连接到该应用程序的用户列表。有没有办法使用 FQL 或 Graph API 来做到这一点?

I want to get the list of users who have connected to the app. Is there a way to do it using FQL or Graph API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

骷髅 2024-11-06 12:00:19

我用过这个并且效果很好。这将为您提供已批准该应用程序的朋友列表,而不是所有用户

function getUsersApplication(){
    var url = "https://api.facebook.com/method/friends.getAppUsers?access_token="+FB.getAccessToken();
    $.ajax( {
        url : url,
        type : 'GET',
        dataType : 'text',
        data : null,
        success : function(data) {
        alert(data);
        }
    });
}

I used this and works fine. This will get you a lists of your friends who have approved the app, not all the users

function getUsersApplication(){
    var url = "https://api.facebook.com/method/friends.getAppUsers?access_token="+FB.getAccessToken();
    $.ajax( {
        url : url,
        type : 'GET',
        dataType : 'text',
        data : null,
        success : function(data) {
        alert(data);
        }
    });
}
星光不落少年眉 2024-11-06 12:00:19

使用 FQL,只需执行以下操作:

$fql="SELECT uid FROM user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ".$me['id'].")
AND is_app_user = 1";

这是不言自明的。

AFAIK,通过 GRAPH API 是不可能的

With FQL, just do :

$fql="SELECT uid FROM user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ".$me['id'].")
AND is_app_user = 1";

This is self explanatory.

AFAIK, its not possible via GRAPH API

心意如水 2024-11-06 12:00:19

这对我有用,这是一个 AS3 示例:

var fql:String = "select pic_square, uid, first_name from user where is_app_user = 1 and uid IN(SELECT uid2 FROM friend WHERE uid1 =" + Facebook.getSession().uid + ")";                            

This works for me, here is an AS3 example:

var fql:String = "select pic_square, uid, first_name from user where is_app_user = 1 and uid IN(SELECT uid2 FROM friend WHERE uid1 =" + Facebook.getSession().uid + ")";                            
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文