Could someone point me in the right direction to how I can get a list of all the groups a specific user is connected to using the facebook graph api?
I have this:
$groups = $facebook->api( '/me/groups', 'GET', array( 'access_token=' => $membertoken ) );
If I use print_r($groups) I can see the array is returning all the groups, but how can I seperate the array to list just the group names and group ID into seperate strings so I can use them in a database etc?
fieldsto the request like this:$facebook->api('/me/groups?fields=id,name')but you that doesn't disable bookmark_order and administrator fields. However i don't understand why does it matter if other field are there. – complex857 Aug 16 '12 at 15:31