FQL facebook query language: how can i query the list of friends of a specific user that has my application installed?

后端 未结 2 1364
感情败类
感情败类 2021-02-04 20:06

When a user logs in to my facebook application, i want to show him a list of all of his friends that has my application installed.

can I use FQL to query who\'s of his f

2条回答
  •  不知归路
    2021-02-04 21:04

    You can do it like this also, if is_app_user=1 then its app user.

    NSString *query = @"SELECT uid, name, pic_square,is_app_user FROM user WHERE uid IN " @"(SELECT uid2 FROM friend WHERE uid1 = me() LIMIT 25)";

提交回复
热议问题