Hi, in the documentation for oauth20 facebook section in chapter 8,
the following correction should be made:
# import required modules
from facebook import GraphAPI, GraphAPIError
(the import of GraphAPIError is missing in the documentation)
Also, i noticed that logging out when using this method doesn't work
properly all the time... I get redirected to a page that says 'None'.
I think making the following correction to a method in
oauth20_account.py solves that:
def logout_url(self, next="/"):
return next
Am I correct? I'm not as skilled as most of you here, so I could be
wrong ;-)