Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.