django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication
0
votes
0answers
4 views
django-allauth social network error
I am using django all-auth for authenticating users via social networks so, when I'm trying to login via facebook/google/twitter through url:
http://127.0.0.1:8000/accounts/socialnetwork/login
( ...
0
votes
1answer
23 views
Allauth {% providers_media_js %} giving need more than 1 value to unpack error
ValueError at /accounts/login/
**need more than 1 value to unpack**
Request Method: GET
Request URL: http://localhost:8000/accounts/login/
Django Version: 1.6
Exception Type: ValueError
Exception ...
-1
votes
2answers
29 views
How to logout the facebook using django-allauth?
I am new to django-allauth. I have successfully login from facebook using djang0-allauth. But I try to logout using '/accounts/logout'. It is also successfully logged out my application. But my ...
0
votes
1answer
65 views
Multiple User Types For Auth in Django
My web features two user types, Client and Professional. There are also two 'main modules', one for clients to buy stuff and so on (the main site), and the other for professionals to manage ...
0
votes
3answers
46 views
Django-allauth: send welcome email on signup (without verification)
How can I send a welcome email to a user who signs up on a django app(using django-allauth). If I set ACCOUNT_EMAIL_VERIFICATION = ("mandatory"), it works fine, and the user gets a verification email. ...
0
votes
1answer
35 views
Django: ImportError allauth.twitter: No module named twitter
I installed allauth but when I run manage.py syncdb I am getting the following error
django.core.exceptions.ImproperlyConfigured: ImportError allauth.twitter: No module named twitter
Any ideas to ...
0
votes
0answers
21 views
Security issue using social authentication
When a website offers you a mechanism to sign in & sign up locally (creating an account for that page) or using a 3rd party app, also called social authentication, (using Facebook, Twitter...) ...
0
votes
1answer
17 views
django allauth- connecting a user with Fb when a previous user hasn't logged out
Im using django-allauth for facebook connect (with js_sdk). It works fine for a user. Now consider the following scenario:
1. User A is logged in through Fb
2. User B logs user A out of Fb on the ...
0
votes
1answer
90 views
Connect facebook phonegap login with django allauth
I'm building up an app that should allow the user to sign up / sign in with Facebook and then he should be able to login (always via Facebook) to the "main" website
To be honest it's a bit more ...
0
votes
1answer
76 views
django-allauth configuration doubts
I'm using django-allauth with Django 1.5.1 and I have a few questions when setting it up:
1. Configure urls.py
The docs says that you have to add the following to urls.py file:
urlpatterns = ...
0
votes
1answer
27 views
Django-allauth: FB connect working with oauth2, but not with js-sdk
I'm trying to connect to FB using django-allauth. Earlier I went with the oauth method and it was working fine, get all the access tokens. But now, I'm trying to run with js_sdk, but cant figure the ...
0
votes
1answer
53 views
Django allauth does not find /accounts/login view due to “No module named path.to”
I've installed django_allauth but the accounts/login view shows this error.
ImportError at /accounts/login/
No module named path.to
Request Method: GET
Request URL: ...
0
votes
1answer
34 views
Django-allauth loads wrong base.html template
I've been trying to get django-allauth working for a couple days now and I finally found out what was going on.
Instead of loading the base.html template that installs with django-allauth, the app ...
0
votes
0answers
54 views
django allauth facebook local development
I'm using django-allauth for Facebook authentication in developement for a site and have set up accordingly:
within the facebook app settings on facebok:
Namespace: test_login
App Domains: blank
...
0
votes
1answer
55 views
Facebook oauth authentication is redirecting to localhost instead of to my domain
While authenticating via OAuth, Facebook is redirecting to localhost instead of to my domain. I'm using django-allauth for facebook authentication. Someone at GitHub pointed out that the error could ...