Facebook GraphAPI - Get a list of groups owned by a user
I would like to get a list of groups that a Facebook Graph API user belongs to. According to the documentation, I tried this:
GET /me/groups
( https://developers.facebook.com/docs/graph-api/reference/user/groups/ )
This requires user_managed_groups
privillege, but it only displays the groups that the user is managing. I would like all groups to be owned by the user.
Is it possible? Thank.
+3
source to share
1 answer
You will need permission to do this user_groups
, but this permission is deprecated and will be removed soon: https://developers.facebook.com/docs/apps/changelog#v2_4
Meaning, this is impossible, I'm afraid.
+8
source to share