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.

I'm using graph api but I can't list the pages and groups of an user.

First, for the permissiones, in the scope, I use: 'scope' => 'publish_stream,user_groups,user_about_me,user_interests,friends_groups,friends_interests,friends_about_me',

and then, when I try the next code, the value of $ct is 0

<?php
session_start();
require 'config.php';
require 'facebook.php';
$facebook = new Facebook(array(
'appId'  => $fb_app_id,
'secret' => $fb_secret,
'cookie' => true,
));
$user = $facebook->getUser();
$info = $facebook->api( '/me/groups', 'GET', array( 'access_token=' => $access_token ) );
$ct = count( $info['data'] );
echo $ct;
?>
share|improve this question

1 Answer

up vote 0 down vote accepted

This may be a silly question, but are you sure:

  • The user is actually in some groups (many users are not)

  • You definitely have the user_groups permission (check with a call to /me/permissions)

share|improve this answer
Hello Igy. "user_groups": 1, I don't understand why it doesn't work properly – MGE Nov 30 '11 at 16:02
Is the user actually in any groups? that's the most obvious explanation – Igy Nov 30 '11 at 16:03
solved, thanks! – MGE Nov 30 '11 at 23:40

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.