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.

Can anyone tell me Is it possible to use facebook social plugin comment box to comment on a picture in my profile? This is the code for facebook social plugin comment box

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:comments href="MY_URL" num_posts="2" width="500"></fb:comments>

I tried this by replaying MY_UR with url of a facebook image in my profile(which is taken from garph api with a given image id).

<?php
$det = $facebook->api('/IMAGE_ID');
$image_url = $det['link'];
?>

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:comments href="<?php echo $image_url; ?>" num_posts="2" width="500"></fb:comments>

But it doesn't work. Is there a way to do this?
Note : I have the publish stream permission.

share|improve this question

1 Answer

You need to point the fb:comments href to the page that's hosting the comments plugin. This is where users will click when they see stories in their newsfeed after one of their friends has commented on your photo.

share|improve this answer
Can you please explain it with more details. Using this way, can I comment on a facebook picture?(a picture which is in my profile).I'm developing this for a facebook application(Not for a website).When user accessed the app, it display a image of my profile with the comment box + all posted comments of that image.I know how to display the image inside my canvas page.Now I need to add the comment box? – Roshanck Jul 25 '11 at 4:19
The comments plugin has to be hosted on a page somewhere. You need to make a unique url for each photo. For example example.com/photo/1 which would display a photo and allow people to comment on that photo, and then a different url like /photo/2 for people to comment on that url. – Jeff Sherlock Jul 25 '11 at 4:46
How do I make a unique url for a photo hosted in facebook? – Roshanck Jul 25 '11 at 4:53

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.