1
I have a group on Facebook as open and use the following method to return an array with all members of the group:
$group_members = $this->facebook->api("/id_do_grupo/members");
When I change the group to private or secret the array returns empty. I shouldn’t, because I’m a member of the group and obviously I’m authenticated in the app to use the facebook->api.
Your app asks for permission
user_groups
when making the connection?– mgibsonbr
I wasn’t asking, but I added it, cleared the browsers cache, logged in again, authorized user_groups and keeps displaying an empty array when it’s in a closed group.
– Gustavo Piucco