Has something changed in the Graph API regarding groups? I use a web application (PHP) that lists groups for the user. I use the following:
HTTPS call to
graph.facebook.com/me/groups?fields=id,name&access_token=" . $accessToken;
The above call used to work, with the access token that my application got as a callback from facebook.
However, it has suddenly stopped working. Note that other API methods, for example to list friends, see example below, is still working with the provided access token.
HTTPS call to
graph.facebook.com/me/friends?fields=id,name&access_token=" . $accessToken;
When debugging I realize that everything works when using the accesstoken on the example web page
Based on this I assumed this was related to my application permissions. I added the extended permissions for "user_groups" and "friends_groups" but still it does not work.
Help would be most appreciated. Thanks!