0
votes

We have user_status permissions for one of our apps. Graph API 2.2 is being used to get user statuses (https://graph.facebook.com/v2.2/me/feed?access_token=".$access_token). It returns empty data sets for SOME users (I get public profile info for these users but not status data). The app is live and the review team has granted permissions for user_status and user_likes. (user_status is passed to the scope). Is this a bug or User_status is dependent on some other permission? Why does it happen for some users and not all?

1
Debug the access token for these users (or check /me/permissions), to see whether those users actually granted the permission. - CBroe

1 Answers

0
votes

As @CBroe mentioned, you should inspect the Access Tokens with /me/permissions to see if they really contain the user_status permission.

I wonder why you're using /me/feed instead of /me/statuses. Maybe this has an effect as well.

See