1👍
Set SOCIAL_AUTH_FIELDS_STORED_IN_SESSION = ['foo_id']
in your settings, then you will be able to access foo_id
in the session in your update_user_details
by doing the usual request.session['foo_id']
.
👤omab
Source:stackexchange.com
1👍
Set SOCIAL_AUTH_FIELDS_STORED_IN_SESSION = ['foo_id']
in your settings, then you will be able to access foo_id
in the session in your update_user_details
by doing the usual request.session['foo_id']
.