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

后端 未结 4 677

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条回答
  •  佛祖请我去吃肉
    2020-12-16 04:47

    You can't get total number of users who have installed application, but you can get daily, weekly and monthly users with simple query:

    SELECT daily_active_users, weekly_active_users, monthly_active_users
      FROM application WHERE app_id = APPLICATION_ID
    

    Note: this will work for any application (not just applications user connected to)

提交回复
热议问题