We are in a big trouble please help.
When group was open, we could read the JSON feed, but when group privacy is set to "Closed" we cannot read it, and we cannot turn group back to "Open". What we are doing right now is
$facebook = new Facebook(
array(
'appId' => '',
'secret' => '',
)
);
$t= $facebook->getAccessToken(); $gid = "233395776824135"; # some group id
$data = curl_get("https://graph.facebook.com/$gid/feed?limit=20&access_token=$t");
curl_get is a function that reads using curl
Now the data returned to us is (all the time) only { "data": [ ] }
is there anything we need to do to "getAccessToken" function of oAuth to set user_groups permission? if yes HOW can we do that?
Following page tells that if group is closed you need user_groups permission https://developers.facebook.com/docs/reference/api/group/
Please help! thanks