Getting facebook OAuth access_token through Python SDK does not seem to be working, any ideas?
- by user259349
According to http://github.com/facebook/python-sdk/blob/master/src/facebook.py , In my canvas application, i can do the following call to get my access_token, which will work because my user has used facebook to login:
import facebook
myDict = facebook.get_user_from_cookie(cookies, app_id, app_secret)
# my access_token is myDict["access_token"]
myDict is alwas None, any ideas?