I cannot wrap my head around this problem. Read a lot of solutions but cannot seem to find the correct combination that works for me. I want to initiate a users password reset flow from within my (android/iOS) app. I think I need django-rest-auth for this to expose an API endpoint something like this: Now posting to http://127.0.0.1:8000/password/reset/ with a
Tag: django-allauth
dj-rest-auth limit social sign up to a specific email address domain
I’m getting started with dj-rest-auth and I have an app which allows user to only sign in via google. However, I want users to only be able to access my service with a specific google apps email domain. I’m using dj-rest-auth in conjunction with django-allauth. This is what I tried: I created allauth adapters like this: and in my settings
How to tell if user’s email address has been verified using Django, allauth, rest-auth and a custom user
I’m using Django 2.0.10 with rest-framework, rest-auth and allauth. I have a custom user model. I’ve got email verification working by using the allauth view. The verification email is sent when a user registers. If I click the link in the email, I’m taken to a page with a button to click to verify the email. This all works without
email authentification doesn’t work using django-allauth
I installed django-allauth and set it up to use it for the internet registration and authentication backend in order to have an email confirmation at registration and sign up the users using their email instead of their username. What is happening is that the registration works perfectly, the authentication using the email doesn’t work whereas it’s working with the username.
Field name `username` is not valid for model
I am attempting to use rest-auth supplied serialisers to GET (*with headers) user details from the defined endpoint /rest-auth/user/ (*with headers (Content-Type: application/json Authorization: Token 1a5472b2af03fc0e9de31fc0fc6dd81583087523 )) I am getting the following traceback: https://dpaste.de/oYay#L I have defined custom user model (using email rather than username)as such: Settings as follows: Not sure how to go about correcting this error.. so that
Saving custom user model with django-allauth
I have django custom user model MyUser with one extra field: I also have according to these instructions custom all-auth Signup form class: After submitting SignupForm (field for property MyUser.age is rendered corectly), I get this error: IntegrityError at /accounts/signup/ (1048, “Column ‘age’ cannot be null”) What is the proper way to store Custom user model? django-allauth: 0.12.0; django: 1.5.1;