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 know how to post a feed on the friend's wall. eg:

$url = 'https://graph.facebook.com/' . $fbId . '/feed';

$attachment =  array(
        'access_token'  => $accessToken,
        'message'       => $msg,
        'name'          => $name,
        'link'          => $link,
        'description'   => $desc,
        'picture'       => $logo,
);

// set the target url
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$go = curl_exec($ch);
curl_close ($ch);

$go = explode(":", $go);
$go = str_ireplace('"', '', $go[1]);
$go = str_ireplace('}', '', $go);
return $go;

But I want to know, how to post a reply to the particular feed using cURL PHP or Facebook Graph API. Can anybody help me out from this problem?

share|improve this question

5 Answers

up vote 1 down vote accepted

Have you tried this:

https://graph.facebook.com/" . $go . "/comment

I think, if you can post a feed with /feed, then you can post comment with /comment url.

Thank you.

share|improve this answer

Okay, first of all, this is a better way of extracting the id:

$go = json_decode($go, TRUE);
if( isset($go['id']) ) {
// We successfully posted on FB
}

So you would use something like:

$url = 'https://graph.facebook.com/' . $fbId . '/feed';

$attachment =  array(
        'access_token'  => $accessToken,
        'message'       => "Hi",
);

// set the target url
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$go = curl_exec($ch);
curl_close ($ch);

$go = json_decode($go, TRUE);
if( isset($go['id']) ) {
    $url = "https://graph.facebook.com/{$go['id']}/comments";

    $attachment =  array(
            'access_token'  => $accessToken,
            'message'       => "Hi comment",
    );

    // set the target url
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $comment = curl_exec($ch);
    curl_close ($ch);
    $comment = json_decode($comment, TRUE);
    print_r($comment);
}

enter image description here

share|improve this answer
This solution was previously suggested by @Ketan. And I've implemented it. Thanks @ifaour – Ronak Apr 23 '11 at 18:57

Use

FB.api('/[POST_ID]/comments', 'post', { 'message' : 'comment post' }); 

Make sure you have the publish_stream privilege of course.

share|improve this answer

I haven't tried this, but you should try the following method:

  1. get the id of the post you just posted. Check if there are any values graph api returns. if not, you can get the id from the "id" field in "https://graph.facebook.com/".$fbId."/feed".

  2. use FB.api('/[POST_ID]/comments', 'post', { 'message' : 'comment post' }); make sure you have the publish_stream privilege ofcourse.

share|improve this answer
you are right, this will probably work. But it uses Facebook PHP API. But I can't use the Facebook API. I want solution using Graph API / cURL. And FYI, I will have posted feed's ID in $go variable. – Ronak Apr 23 '11 at 4:10

This is not working anymore, right?

While posting to:

curl -F 'access_token=MyAccessToken' -F 'message=My Message' https://graph.facebook.com/MyCommentID/comments

I'm getting the following error:

{"error":{"message":"(#100) Invalid fbid.","type":"OAuthException","code":100}}

share|improve this answer
There might be problem in your access token. You might not have permissions to comment on that particular comment ID or your access token might be expired. Can you confirm the same? – Ronak May 25 '12 at 18:38

protected by Community Apr 18 '12 at 12:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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