Skip to main content

otpless-auth-sdk

Project description

Merchant Integration Documentation(Backend Python Auth SDK)


A. OTPLessAuth Dependency

install Below dependency in your project's

pip install OTPLessAuthSDK

you can also get latest version of dependency at https://pypi.org/project/OTPLessAuthSDK


B. OTPLessAuth class

The OTPLessAuth class provides methods to integrate OTPLess authentication into your Python backend application. This documentation explains the usage of the class and its methods.

Methods:


1. decodeIdToken


This method help to resolve idToken(JWT token) which is issued by OTPLess which return user detail from that token also this method verify that token is valid, token should not expired and issued by only otpless.com

Method Signature:
decode_id_token(id_token, client_id, client_secret, audience=None)

Method Params:

Params Data type Mandatory Constraints Remarks
idToken String true idToken which is JWT token which you get from OTPLess by exchange code API
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: UserDetail

{'success': True, 'auth_time': 1697649943, 'phone_number': '+9193******', 'email': 'dev***@gmail.com', 'name': 'Devloper From OTP-less', 'country_code': '+91', 'national_phone_number': '9313******'}

2. verify code


This method help to resolve code which is return from OTPLess which will return user detail from that code also this method verify that code is valid, code should not expired and issued by only otpless.com

Method Signature:
verify_code(code, client_id, client_secret, audience)

Method Params:

Params Data type Mandatory Constraints Remarks
code String true code which you get from OTPLess
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: UserDetail

{'success': True, 'auth_time': 1697649943, 'phone_number': '+9193******', 'email': 'dev***@gmail.com', 'name': 'Devloper From OTP-less', 'country_code': '+91', 'national_phone_number': '9313******'}

3. Verify Auth Token


This method help to resolve token which is issued by OTPLess which return user detail from that token also this method verify that token is valid, token should not expired and issued by only otpless.com

Method Signature:
verify_token(token, client_id, client_secret)

Method Params:

Params Data type Mandatory Constraints Remarks
token String true token which you get from OTPLess
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: UserDetail

{'success': True, 'auth_time': 1697649943, 'phone_number': '+9193******', 'email': 'dev***@gmail.com', 'name': 'Devloper From OTP-less', 'country_code': '+91', 'national_phone_number': '9313******'}

4. Generate Magic link


The Authorization Endpoint initiates the authentication process by sending a magic link to the user's WhatsApp or email, based on the provided contact information. This link is used to verify the identity of the user. Upon the user's action on this link, they are redirected to the specified URI with an authorization code included in the redirection.

Method Signature:
generate_magic_link(mobile_number, email, client_id, client_secret,redirect_uri,channel)

Method Params:

Params Data type Mandatory Constraints Remarks
channel String false if no channel given WHATSAPP is chosen as default WHATSAPP/SMS
mobile_number String false At least one required The user's mobile number for authentication in the format: country code + number (e.g., 91XXXXXXXXXX)
email String false At least one required The user's email address for authentication.
redirect_uri String true The URL to which the user will be redirected after authentication. This should be URL-encoded
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: RquestIds

{'mobile_request_id': '72bf8ccdb56949c18fa141452c3b42a6', 'email_request_id': 'e3600742ff6049de85d0fe60995beefe', 'success': True}

Mobile

{'mobile_request_id': 'a624bb06e0c0433a92a095e06f80a995', 'destination_uri': 'https://wa.me/911141169439', 'success': True}

C. OTP class

These methods enable you to send, resend and verify OTP.

Methods:


1. Send OTP


Method Signature:
send_otp(phoneNumber, email, channel,hash, orderId, expiry, otpLength,client_id,client_secret)

Method Params:

Params Data type Mandatory Constraints Remarks
phoneNumber String true Mobile Number of your users
email String true Mail Id of your users
orderId String false An Merchant unique id for the request.
expiry Int false OTP expiry in sec
hash String false An Hash will be used to auto read OTP.
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret
otpLength Integer false 4 or 6 only allowed Allowes you to send OTP in 4/6 digit. default will be 6 digit.
channel String false SMS/WHATSAPP/ALL (if no channel given SMS is chosen as default) Allowes you to send OTP on WhatsApp/SMS/Both. default will be SMS

Return

Return: Object Name: OTPResponse

{
  "orderId": "Otp_ED5F709E1C6B41EB8C0595C7968354EB"
}

2. Resend OTP

Method Signature:
    resend_otp(orderId, client_id, client_secret)

Method Params:

Params Data type Mandatory Constraints Remarks
orderId String true An Merchant unique id for the request.
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: OTPResponse

{
  "orderId": "DP0000111"
}

3. Verify OTP

Method Signature:
    veriy_otp(orderId, otp, email, phoneNumber, client_id, client_secret)

Method Params:

Params Data type Mandatory Constraints Remarks
email String true An email on which OTP has been sent.
phoneNumber String true An phone number on which OTP has been sent.
orderId String true An Merchant unique id for the request.
otp String true OTP value.
clientId String true Your OTPLess Client Id
clientSecret String true Your OTPLess Client Secret

Return

Return: Object Name: OTPVerificationResponse

  • reason (String): The will be errorMessage in case of OTP doesn't verified
{
  "isOTPVerified": true
}

UserDetail Object Fields:

success (boolean): This will be true in case of method successfully performed operation.
> authTime (Long, required): The time when authentication was completed.
> phoneNumber (String, required): The user's phone number.
> countryCode (String, required): The country code of user's phone number.
> nationalPhoneNumber (String, required): The user's phone number without country code.
> email (String, required): The user's email address.
> name (String, required): The user's full name.

Error case:

success (boolean): This will be false. The method is failed to perform.
errorMessage (String): The message contains error information.

Example of usage

import OTPLessAuthSdk

# Setup necessary parameters
client_id = "your_client_id"
client_secret = "your_client_secret"
code = "your_id_token_here"
audience = None

# Use the verify_code function to verify the code and get user details
try:
    user_details = OTPLessAuthSDK.UserDetail.verify_code(code, client_id, client_secret, audience)


    print(user_details.success)
    print(user_details.auth_time)
    print(user_details.phone_number)
    print(user_details.email)
    print(user_details.name)
    print(user_details.country_code)
    print(user_details.national_phone_number)


    print(f"User details: {user_details}")
except Exception as e:
    print(f"An error occurred: {e}")

This method allows you to decode and verify OTPLess ID tokens and retrieve user information for integration into your backend Python application.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

OTPLessAuthSDK-0.3.2.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

OTPLessAuthSDK-0.3.2-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file OTPLessAuthSDK-0.3.2.tar.gz.

File metadata

  • Download URL: OTPLessAuthSDK-0.3.2.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for OTPLessAuthSDK-0.3.2.tar.gz
Algorithm Hash digest
SHA256 09f219f2d25dc95532e6d874f4caf5394c0a4188e0c38c5748958111fe761646
MD5 094f29f26191aa191987934e6b72c5bd
BLAKE2b-256 767324f01368da529939ec76d2a623b6852b12e53e1e123c9a9703f85c74ad7b

See more details on using hashes here.

File details

Details for the file OTPLessAuthSDK-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: OTPLessAuthSDK-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for OTPLessAuthSDK-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3127ad21b1de1245e8a01e21431bac465342d305f94bce08781f0581f263ba96
MD5 843850a2242956d59609cb9621d5bbba
BLAKE2b-256 d36a2d11c3e3379353850b0168371140015d12c59b313b39043083802b24829f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page