Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i comment on a facebook post externally? i.e. through my web page?

I can like a post this way but can't seem to find a way to comment on it. I have added a comment box and given it the url to the facebook post but it does not show up there, only on my page or publishes it to the user's wall who is commenting but not on the actual post.

share|improve this question
What have you tried ? – blue112 Oct 30 '12 at 9:22

2 Answers

Afaik it is not possible. The Comments Plugin cannot be connected to a specific post on facebook. There seem to be no way with the API either:

https://developers.facebook.com/docs/reference/api/Comment/

You can "like", "delete" and "read" a comment throught the API, but not create comments. I guess this is for security and spam reasons.

share|improve this answer

There's no prebuilt social plugin for this but the regular API supports adding comments to most types of objects and it's quite straightforward.

Request the publish_stream permission from your users, and for most types of objects (examples being Post and Photo objects) you can make a POST to /<object ID>/comments?message=message goes here&access_token=ACCESS_TOKEN

This obviously doesn't work for URLs, as there's no ability to post comments on URLs except via the comments plugin

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.