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.

Facebook Graph API let us use this to get all likes of a "post"

[facebook requestWithGraphPath:@"post_id/likes" andDelegate:self];

(post id type maybe status, photo, or link etc)

post id ,ex: 183039808383895_363838080355846

we also can use this to get all likes of a "comment"

[facebook requestWithGraphPath:@"comment_id/likes" andDelegate:self];

comment id ex: 183039808383895_363838080355846_3047357

if we use this, we can get if user likes this "comment"

[facebook requestWithGraphPath:@"comment_id?fields=user_likes" andDelegate:self];

the result is

{
"user_likes": false,
"id": "183039808383895_363838080355846_3047357",
"created_time": "2012-07-11T14:01:42+0000"
}

but how do I get if user likes a "post" or not if I use this

[facebook requestWithGraphPath:@"post_id?fields=user_likes" andDelegate:self];

but it doesn't work, I got a error.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.