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.

Is there a way to reply to the user's wall comments using the Facebook C# SDK? I'm using following code for wall posting:

var fb = new FacebookClient(facebookOAuthResult.AccessToken);
dynamic parameters = new ExpandoObject();
parameters.message = "test";
dynamic postresult = fb.Post("me/feed", parameters);
share|improve this question
Can there be a way to Post like fb.Post("me/feed/message_id") .. this message_id is the wall's Original Post ID..?? – Shaan_14 Jan 1 '12 at 11:27

2 Answers

up vote 0 down vote accepted

I hope I'm understanding this question correctly. I'm assuming this is the use case:

  1. User posts a status update(the ID of this post is "12345")
  2. User's friend writes a comment for that status update
  3. User writes on a comment on the status update made in Step.1
try  
{  
    String statusUpdateID = "12345";  
    fb.Post(String.Format("/{0}/comments", statusUpdateID), parameters);  
}  
catch (FacebookOAuthException e)  
{  
    //this exception is thrown if your comment fails to post  
}

That should do it! Of course, make sure that statusUpdateID is set to the actual ID of the message you want to comment on.

Also, you do NOT need to store the return value of 'fb.Post(),' it is the ID of the comment you just made.

share|improve this answer

To comment on a post, HTTP POST to {POSTID}\Comments with message as a post parameter

See http://developers.facebook.com/docs/reference/api/post/ for more information on the comments connection and how to create a comment.

Create

You can write to the POST_ID/comments connection to post a comment to the post by issuing an HTTP POST request with the publish_stream permission and following parameters.

Parameter    Description     Type    Required
message Comment text    string   yes

If the write is successful, you get the following return.

Name     Description     Type
id   The new comment ID string
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:15

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.