I\'m building a Facebook app using Python/Django. I\'ve installed FanDjango and that works great. Just one more thing I need.
I\'d like to build a \"like-gate\" fo
Fandjango wraps facepy so it's actually easier. Install only Fandjango via pip to avoid conflicts.
In the view with the request object, you can simply check against
request.facebook.signed_request.page.is_liked
and perform different actions. Remember that page will be None if the app is not in a page.