Menu
  • HOME
  • TAGS

Facebook Android SDK AppEvents not recognizing users on Insights Dashboard

android,facebook,facebook-insights

Update based on Facebook Team answer: This is actually by design. We do not show breakdowns for events when the number of unique users that have fired that event is too low. The reason is that with a small number of users for a certain event, it may be possible...

Replicating Page insights overview box with the ability to change the date range

facebook,facebook-graph-api,facebook-insights

Figured most of this out the endpoints needed are: Page likes: [object-id]/insights/page_fans Total Reach: [object-id]/insights/page_impressions_unique post reach: [object-id]/insights/page_posts_impressions_unique likes, comments, and shares [object-id]/insights/page_positive_feedback_by_type ...

Facebook - default app visibility and info missing in insights

android,facebook,facebook-graph-api,facebook-insights,facebook-permissions

If you're only requesting read permissions, then there's no way to change the default audience (it's not really meaningful anyways in that case). If you're requesting publish permissions (like publish_actions), then you can set a default audience when you're making the request. See https://developers.facebook.com/docs/reference/android/current/class/Session.NewPermissionsRequest/#setDefaultAudience This can only be done...

How to get accurate data from “post_stories_by_action_type” facebook graph api insight

php,facebook-graph-api,facebook-insights,metric

I am answering myself here in case anyone faced this problem, to get accurate shares count use this request : page-id_post-id?fields=shares P.S. this answer by "Shayne Xin Wang" from Facebook Developer Community. ...