Using PyFacebook with the Facebook middleware as a decorator

1
2
3
4
5
6
7
8
#its just as easy as
from django.utils.decorators import decorator_from_middleware
from facebook.djangofb import FacebookMiddleware

@decorator_from_middleware(FacebookMiddleware)
@facebook.require_login()
def canvas(request):
    ....

Comments

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.