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 have facebook social comments box. How can I post comment through graph API to it?

share|improve this question

2 Answers

I can give you half the answer to this question, but still need the other half very much myself. You can post a reply to an existing comment within Social Comments box by finding its post_fbid. To get this you can use FQL such as:

https://api.facebook.com/method/fql.query?query=SELECT post_fbid, id FROM comment WHERE object_id IN (SELECT comments_fbid FROM link_stat WHERE url ='[ PAGE_URL ]')&access_token=[ ACCESS_TOKEN ]

This query will need to be run through an escape() with the PAGE_URL and then used for an HTTP GET request:

https://api.facebook.com/method/fql.query?query=SELECT%20post_fbid%2C%20id%20%0A%20%20%20%20%20%20%20%20FROM%20comment%20%0A%20%20%20%20%20%20%20%20WHERE%20object_id%20IN%20%0A%20%20%20%20%20%20%20%20%20%20(SELECT%20comments_fbid%20%0A%20%20%20%20%20%20%20%20%20%20%20FROM%20link_stat%20%0A%20%20%20%20%20%20%20%20%20%20%20WHERE%20url%20%3D'http%3A%2F%2Fexample.com')&access_token=[ ACCESS_TOKEN ]

With the post_fbid you can make a reply by doing an HTTP POST to:

https://graph.facebook.com/[ POST_FBID ]/comments/?access_token=[ ACCESS_TOKEN ]&message=[ MESSAGE]

Now for posting a new comment to the page this used to work until recently with an HTTP POST:

http://graph.facebook.com/comments/?ids=[ PAGE_URL ]&access_token=[ ACCESS_TOKEN ]&message=[ MESSAGE]

But currently this is consistently returning:

{
  "error": {
    "message": "An unknown error has occurred.", 
    "type": "OAuthException"
  }
}

I hope this helps a bit and if anyone can shed some light if posting a new comment like this is even possible anymore it would be greatly appreciated.

share|improve this answer
Guess I am not the only one experiencing the OAuthException then :-/ Let me know if you find a solution for that one... – Christer Nordvik Oct 26 '11 at 19:37
1  
Yes, guys, I tested it this September - it worked. Now it does not. Usual thing :-) – potomok Nov 10 '11 at 15:12
you need to set &method=POST when you want to post something – Pooya Estakhri Feb 28 '12 at 8:19
it seems you are posting with user access_token not with page access_token – Pooya Estakhri Feb 28 '12 at 8:21
More than one year later, the bug still exists. This is a shame – Julien Nov 28 '12 at 10:04

Its very easy as you post on user feed after getting access_token with publish stream token

I assume you use PHP SDK if you need in other let me known

You just need Step 4 but i give you more details in Step 1 to 3 so you can understand and do clearly

Step 1

get the user access token

        $token = $facebook->getAccessToken();
        echo "</br>" . 'Access_Token:' . $token;

Step 2
set default access token and profile

        $facebook->setAccessToken($token);

Step 3
compile the post

    $WallPost = array(
    'message' => 'hey this app is cool!!',
    'link' => $canvas_page,
    'caption' => 'caption',
    'description' => 'Test Description',
            );  // you can also use 'picture', 'description', 'source'.... 

Step 4
post to wall or your Social Comment Plugin

        $response = $facebook->api('/me' . '/feed','POST',$WallPost);

Thanks

share|improve this answer
This is for pushing on the timeline, not a comment, you need to edit step 4 – Julien Sep 21 '12 at 9:00
The question was clearly asking how to post a comment to a comments social plugin, and not how to post to a user feed/wall... – Yuval A. Jan 16 at 18:47

protected by BoltClock Apr 6 '12 at 10:26

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.