Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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..

share|improve this question

1 Answer

https://developers.facebook.com/docs/reference/api/photo/
tells me that photo comments can be found in /PHOTO_ID/comments

So should be something like this:

$photo_comments = $facebook->api("/". $photo->id ."/comments", array("access_token" => $facebook->getAccessToken());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.