Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 480 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 480 Bytes

OTP-in-django

Quick and simple technique to implement the OTP functionality in your Django Project.

Python Packages required: pyotp, base64, django, django-rest-framework

API Calls

GET

This is to register the mobile number into the database and generate OTP.

http://127.0.0.1:8000/verify/9999999999/

POST

This is to verify the mobile number using OTP.

http://127.0.0.1:8000/verify/9999999999/

Data:

   {
    "otp":040301
   }