django-rest-framework-passwordless
django-rest-framework-passwordless copied to clipboard
Passwordless Auth for Django REST Framework
I think a token length of 6 is not secure. It would be nice to have the ability to change the length of the token (and maybe completely change the...
I have registered and the user logs out from client app, now how to login with same emailid and create new token? Is there a way to do so?
Update the TokenValidationSerializer information in the Readme to specify that the email or mobile alias must be provided as well.
I have added a custom email template for token email. inside template folder and I have mentioned it in the settings but it is not sending the email with that...
If I try to create another user after I have already created one this error pops up `django.db.utils.IntegrityError: UNIQUE constraint failed: auth_user.username`
hey, thanks for package @aaronn bug in `send_sms_with_callback_token()` ```python twilio_client.messages.create( body=base_string % mobile_token.key, to=to_number, from_=api_settings.PASSWORDLESS_MOBILE_NOREPLY_NUMBER ) ``` `to_number` should have `"+"` otherwise twilio client doesn't work and it was hard...
The sent token was 6 digit long with fixed value. This commit contains the neccessary changes to be able to configure as we want.
Hi there, i'm using this awesome package for my project and i was investigate through the code and i saw that every expired tokens (6-digits) is saved in db. But...
I had a case where I needed to generate different tokens for certain types of users, so I moved out the value to a class variable so I can change...
This iss great repo thanks but demand to override this: AbstractBaseAliasVerificationSerializer