How to display Monthly Active users (MAU)?
Hey there, I want to fetch / display the MAU of a specific Facebook App. Is this possible or开发者_运维问答 can this be done with a plugin?
You can do this with either the FQL or Graph API. To do it with the graph you will want to make the following call:
https://graph.facebook.com/your_app_id/insights
This will return you a json object. You will want to look for the insight called "application_active_users" for the period month.
You can find more about insights here and here.
精彩评论