Questions tagged [django-allauth]

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

1673 questions
123
votes
19 answers

Django 1.10.1 'my_templatetag' is not a registered tag library. Must be one of:

I want a menu thats custom depending which group you are member of. Im using Django 1.10.1, allauth and so on. When im trying to make my templatetag it fails and it says:¨ TemplateSyntaxError at / 'my_templatetag' is not a registered tag library.…
Sliljedal
  • 1,231
  • 2
  • 8
  • 3
117
votes
8 answers

How to customize user profile when using django-allauth

I have a django project with the django-allauth app. I need to collect additional data from the user at signup. I came across a similar question here but unfortunately, no one answered the profile customization part. Per the documentation provided…
Shreyas
  • 1,410
  • 3
  • 11
  • 15
54
votes
8 answers

Django: SocialApp matching query does not exist

I'm using django-allauth, and I configured localhost:9000/admin/ with the following details: socialapp . provider: Name: Client id: App ID, or consumer key Key: Secret: etc . I set SITE_ID = 2 (because I changed the default site example.com to…
masterofdestiny
  • 2,751
  • 11
  • 28
  • 40
52
votes
2 answers

Django allauth example [Errno 61] Connection refused

I have the following error when I run django allauth example and it tries to send an email: File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 571, in create_connection raise err error: [Errno 61]…
arthur.sw
  • 11,052
  • 9
  • 47
  • 104
49
votes
5 answers

Django allauth social login: automatically linking social site profiles using the registered email

I aim to create the easiest login experience possible for the users of my Django site. I imagine something like: Login screen is presented to user User selects to login with Facebook or Google User enter password in external site User can interact…
neves
  • 33,186
  • 27
  • 159
  • 192
47
votes
4 answers

Plug in django-allauth as endpoint in django-rest-framework

I'm using django-allauth on my website for social logins. I also have a REST API powered by django-rest-framework that serves as the backend of a mobile app. Is there a way I can directly plug in allauth's authentication backend to the REST api so…
maroux
  • 3,764
  • 3
  • 23
  • 32
36
votes
4 answers

Django rest-auth allauth registration with email, first and last name, and without username

I am using django-rest-auth and allauth for login and registration in my django app. I haven't written any extra single line of code of my own for login or registration. Registration is successful with emailid and provided password. I am not using…
Thinker
  • 5,326
  • 13
  • 61
  • 137
35
votes
3 answers

Remove 'username' field from django-allauth

When django-registration doesn't support django 1.5 and custom user model. I'm trying use django-allauth, from first look it's great product. Problem i have - username field required, but in my app i don't have username's. So, allauth documentation…
Rukomoynikov
  • 1,385
  • 2
  • 12
  • 15
30
votes
7 answers

overriding default templates of django-allauth

I used this social registration/signup library django allauth for a project of mine. How do i customize the default templates and forms to give a better look and feel?
27
votes
2 answers

django allauth facebook redirects to signup when retrieved email matches an existing user's email?

I am successfully able to login via Google and Facebook using Django (1.6.4) and allauth (0.16.1) and Python (2.7) with expected redirect to settings.LOGIN_REDIRECT_URL in case when there isn't a existing user with emailid retrieved from provider.…
amulllb
  • 3,036
  • 7
  • 50
  • 87
27
votes
4 answers

Redirect User to another url with django-allauth log in signal

I am using Django-allauth for my login/signup related stuff, so when a user signs up(first time) into my site, I am redirecting him to /thanks/ page by defining below setting in settings.py file LOGIN_REDIRECT_URL = '/thanks/' But when the user…
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
26
votes
3 answers

How to disable intermediate signout page in Django allauth

How to disable the intermediate signout page from django allauth. When the user clicks on the signout link on my site I want him to logout right away, I want to remove this intermediate page
Mayank
  • 2,333
  • 3
  • 17
  • 23
23
votes
9 answers

How to edit django-allauth default templates?

i'm using Django 1.10 and i want to add the allauth's app for login, signin, etc, to my website. I've installed allauth from pip, and tried to put the templates from allauth repository inside my templates folder and call them but i don't know how to…
Sebastian Tare B.
  • 542
  • 3
  • 5
  • 14
21
votes
2 answers

django-allauth: Linking multiple social accounts to a single user

In testing django-allauth, if I log in and log out with different social accounts, they don't seem to be linked together (in that I cannot access them by looking at socialaccount_set.all.0, socialaccount_set.all.1, etc). Can someone explain how to…
voisin
  • 267
  • 2
  • 6
20
votes
1 answer

Django third party app name conflicts

I have been trying to get two third party apps to play nice together, and it just hasn't been working for me, due to their names. The two apps I am trying to get to work are django-user-accounts and django-allauth. The problem is, both apps are…
PoDuck
  • 1,381
  • 15
  • 38
1
2 3
99 100