just wanted to ask why does my facebook graph api is not returning any result but it does work in my localhost. Does it have anything to do with my hosting site(ipage)?
here is the code:
$FBpage = file_get_contents('https://graph.facebook.com/26484009688027 /members?access_token=***&limit=300');
$FBdata = json_decode($FBpage);
foreach ($FBdata->data as $tcc_members ) {
$StatusID = explode("_", $tcc_members->id);
echo '<li>';
if (!empty($tcc_members->name)) {
echo '<img src="https://graph.facebook.com/'.$tcc_members->id.'/picture?type=square"';
echo "$tcc_members->name";
}
echo '</li>'; }
?>
developers.facebook.com?, specifically theapp domains&site url? – JustAnil Sep 4 '12 at 20:26myapp.localand on live your url ismyapp.com, they both should be specified in your app settings. – JustAnil Sep 4 '12 at 21:14