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'm not good at English :(

I made a FB app for page.

and check the user likes the page by the app.

I use two kinds of API. and they work well.

  1. FB.Data.query('SELECT uid FROM page_fan WHERE page_id=$pageid and uid=$userid') and check number of rows.

  2. FB.api({ method: 'pages.isFan', page_id: '$pageid',uid:'$userid' }) and check it returns 'true'.

but some users appeal to our page. (

They already like our page. but they still handled as not a fan.

Actually API returns false.

anybody knows this problem??

share|improve this question

2 Answers

You can try and use the new Graph API call to see if you get better results

http://graph.facebook.com/me/likes/PAGEID?access_token=UserAccessTokenWithUserLikesPermissionsEnabled

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 21:00

There is a bug about this. You can see it here:

http://developers.facebook.com/bugs/344295515590822?browse=search_4f5f3563d780d9449526693

More than 1 month later Facebook does not fixed it.

share|improve this answer

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.