$graph_url = "https://graph.facebook.com/".$_SESSION['sm_info']['fbid']."/feed?fields=id,name,created_time,description,message,full_picture,type,status_type,link,comments,likes&limit=10000&since=".$datefrm2."&until=".$dateto1."&access_token=".$_SESSION['access_token'];
$feed['feeds'][] = json_decode(file_get_contents($graph_url));
This is the code we have written to get browser data into variable and then store data in array, for test user. We got data when we execute it in fb tool explorer. But when executing, in our app, it is showing blank page, and not showing any browser data. Please help me in this.