How can I get info about "if I liked the facebook fanpage"? The best for me will be ajax request with callback, but I've not found anywhere the solution.
closed as not a real question by CBroe, Iznogood, Gunnar Karlsson, Igy, Graviton Nov 28 '12 at 4:57
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you are making a page tab app, FB already tells you if the user is a fan of that page automatically from the signed request. I think it's called "is_fan". The nice thing about this is that it does not even require the user to install your tab before hand. If you are making a canvas or standalone app, then you need to
This method is a bit long winded and you will usually encounter a drop off rate from users because you are asking an extended permission (user_likes) but if you have the right user flow it could work out. |
|||
|
|
signed_requestparameter. From anywhere else, you have to have the user connect to your app, get their permission to read their likes, and then check/userid/likes/pageidvia the API. developers.facebook.com/docs/reference/api/user/#likes – CBroe Nov 21 '12 at 21:07