Re: Any open source SMS?

2024-03-14 Thread Gulshan Yadav
I generate only apI On Thu, 14 Mar 2024 at 11:30, raghav bajaj wrote: > Hi, > > You can use Google's Firebase to authenticate your users on the client > side. However, they don't have SDKs for Python, so if you wish to integrate > the OTP service with a Django project, you'll have to rely on API

Re:Any open source SMS?

2024-03-14 Thread dawda borje kujabi
You can use twillo for sms verification but it's not free and they do have an sdk for python.  Original message From: raghav bajaj Date: Thu, 14 Mar 2024, 6 amTo: django-users@googlegroups.comSubject: Re: Any open source SMS?Hi,You can use Google's Firebase to authenticate your user

Re: 'accounts/logout' isn't working !!

2024-03-14 Thread Keshav Jha
New Version of django does not support GET method for logout. You have two options to accomplish your task: 1. Send a post request to logout. 2. Custom Manage: > Create a custom url in the project's url.py at the top. path('admin/logout/', logout_), > Create a v