I've tried to follow the advice of this question: http://stackoverflow.com/questions/984071/facebook-django-and-google-app-engine, however I've run into a number of problems. The first is that from facebook.djangofb import facebook
doesn't work because when I try to use the decorator @facebook.require_login()
, it complains that the facebook module doesn't have that method. If I change it to import facebook.djangofb
and @facebook.djangofb.require_login()
, it works. Any ideas that's going on there?
Then, even with that, I experience the same problem as in this question: http://stackoverflow.com/questions/2039366/app-engine-patch-and-pyfacebook-not-working.
It seems like a lot of people have done this, so is there a good example of how to combine PyFacebook and App Engine Patch?