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 am developing an app where I need to comment on a facebook comment or link posted on the wall.I am using FBConnect and Graph API for this.I tried googling it for long time but cannot fing anything helpful. I used this link also but was not helpful.

Please help me out.I am able to fetch the comments but how to post a comment for that particular comment is a challenge for me.

Thanks.

share|improve this question
Increase your acceptance rate for better response from SO User's. – Devang Mar 2 '12 at 5:52

2 Answers

try this:- for " how to post a comment for that particular comment/feeds

 NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"Your Comment text here.", @"text",@"Comment_object_id", @"object_id",nil];
  [facebook requestWithMethodName:@"comments.add" andParams:params andHttpMethod:@"POST" andDelegate:self];
share|improve this answer
Hi, THanks for help.But what is the type of facebook in [facebook requestWithMethodName:@""...]; – Abhinandan Sahgal Mar 2 '12 at 8:22

Take a look at this tutorial : Post to user's wall on Facebook

Hope it'll help

share|improve this answer
I donot want to post on wall,There is already a link posted I need to comment on that. – Abhinandan Sahgal Mar 2 '12 at 8:18

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.