django - Where in database does python-social-auth store access token? -
i using python-social-auth
(within django) implement facebook-login. able sign app using facebook , extract user email. in database can find oauth token generated facebook? in password field in user table?
it's in usersocialauth extra_data field jsonfield.
example of value stored:
{"expires": "5184000", "id": "00000000000000000", "access_token": "the-token-value"}
Comments
Post a Comment