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.

I can post in my wall , friend's wall... but i need post a comment with fabook php api, something like this:

POST:         Helloo!
COMMENT: Hi!! <-PHP facebook API

POST in my wall :

$facebook->api('/feed/me/', 'post', array('message' => $message)); //Script running OK

POST in wall friend's:

$facebook->api('/ID_or_username_friend/feed/', 'post', array('message' => $message)); //Script running OK

but if use:

$facebook->api('/id_post/feed/', 'post', array('message' => $comment)); // nothing happens

they dont show any errors, but the comment is not posted :/ if i use another method i recive:

Uncaught OAuthException: Unknown path components:

any can help me ?

share|improve this question

2 Answers

up vote 1 down vote accepted

It's $facebook->api('/id_post/comments', ...

share|improve this answer
looooooooooooooooooooooooooooooooooooooooooooool this works. – Daniel Montague Dec 5 '12 at 22:26
1  
After wasting about 2-3 hours, finally found this link... Thanks +100... – Vins May 23 at 12:59

Look at the Post object documentation - to add a comment to a Post you need to make a POST request to /<POST ID>/comments

The only parameter is message, with the text of the comment the user typed in

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.