What I am trying to do is to display all the images of user with comments and likes on my website. I can get all images successfully but can't get comments.
$facebook = new Facebook($config);
$user = $facebook->getUser();
if($user)
{
$photo = $facebook->api("/".231321313."?fields=comments,likes", array("access_token" => $facebook->getAccessToken());
var_dump($photo);
}
where 231321313 is my photo id, Please help i am stuck here.
result: I am only getting photo details not comments..
