-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NotImplementedError #310
Comments
That should be the case, could you paste the full traceback? Also, what happens if you try this in a django shell: from social.apps.django_app.default.models import DjangoStorage |
I found an error in a custom function I had in the pipeline. Was able to resolve that. |
Social association to logged in users is totally possible and |
Thanks. Had to work my way around our custom User model. However, when i login to facebook as user b when logged into our site as user a, it creates and logs me in to user b and doesnt associate with user a at all. Logging into facebook (user b) should log me into the site as user a. however it logs me in as b. Is there a setting I am missing? |
I am going to close this issue as mine is more in the implementation than an issue with the code itself. Thanks for your help. I am still having trouble but will post on https://groups.google.com/forum/#!forum/python-social-auth instead. Thanks! |
I am adding Facebook Auth to my django(1.5.8) site. I have set SOCIAL_AUTH_USER_MODEL to our cutsom user. When the pipeline hits the create_user call, it appears to be looking in storage/base.py for user_model which of course raises the NotImplementedError. Shouldn't it use the one in django_app?
Error:
Exception Value:
Implement in subclass
Exception Location: .../lib/python2.7/site-packages/social/storage/base.py in user_model, line 103
Thanks!
The text was updated successfully, but these errors were encountered: