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 want to implement facebook like button in my native iphone app. So that user can like my facebook page . I am already sharing facebook status updates, but am unable to implement like button.

I was unable to find any helpful resource on web.Please help.

share|improve this question
1  
I like it when users looking for help actually take the time to acknowledge the help by accepting answers or clarifying the queries if the answers aren't helpful... – Jason Coco Jul 4 '12 at 6:50
possible duplicate of Adding the Facebook Like Button in an iPhone App – Juicy Scripter Jul 4 '12 at 7:14

1 Answer

Aaaand here's one I prepared earlier (using FBConnect, the FB api): If you have the id of the post as postId

NSString *graphPath = [[NSString alloc] 
                                       initWithFormat:@"%@/likes",
                                       postId];
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[[delegate facebook] requestWithGraphPath:graphPath andParams:params andHttpMethod:@"POST" andDelegate:self];

of course you'd need to change how you got the Facebook singleton (I used [delegate Facebook]).

share|improve this answer
And if you aren't using the FBConnect api... I can't help. – cool_me5000 Jul 4 '12 at 6:54
This may be used to like posts but not URLs or Pages – Juicy Scripter Jul 4 '12 at 6:56
Ahhh, oh well. My bad. Should I delete the answer? – cool_me5000 Jul 4 '12 at 7:11

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.