Skip to content Skip to sidebar Skip to footer

No Permission To Access Invitable Friends

I am developing an android game app and want to get a list of Facebook invitable friends. Unfortunately I hit this error: Response: responseCode: 400, graphObject: null, error: {

Solution 1:

Getting user_friends permission requires you to submit your app for facebook devs to review. If you just want the list of friends who have installed your app you can get that without the user_friends permission, by just doing a get call on :

https://graph.facebook.com/fb_id/friends?access_token=...

Reference : https://developers.facebook.com/docs/graph-api/reference/user/friends

Post a Comment for "No Permission To Access Invitable Friends"