get list of facebook users who are using specific application using FQL

后端 未结 4 681

I am trying to fetch following case using FQL

If few users have authorized \"Application A\" then is it possible to know that currently how many users are using tha

4条回答
  •  猫巷女王i
    2020-12-16 05:03

    SELECT uid FROM user WHERE uid IN ( SELECT uid2 FROM friend 
    WHERE uid1 = '549483876' ) AND is_app_user = 1
    

提交回复
热议问题