Package for working with the Vonage Number Verification Network API.
Project description
Vonage Number Verification Network API Client
This package (vonage-network-number-verification
) allows you to verify a mobile device. It verifies the phone number linked to the SIM card in a device which is connected to a mobile data network, without any user input.
This package is not intended to be used directly, instead being accessed from an enclosing SDK package. Thus, it doesn't require manual installation or configuration unless you're using this package independently of an SDK.
For full API documentation, refer to the Vonage developer documentation.
Registering to Use the Network Number Verification API
To use this API, you must first create and register a business profile with the Vonage Network Registry. This documentation page explains how this can be done. You need to obtain approval for each network and region you want to use the APIs in.
Installation
Install from the Python Package Index with pip:
pip install vonage-network-number-verification
Usage
It is recommended to use this as part of the vonage
package. The examples below assume you've created an instance of the vonage.Vonage
class called vonage_client
.
The Vonage Number Verification API uses Oauth2 authentication, which this SDK will also help you to do. Verifying a number has 3 stages:
- Get an OIDC URL for use in your front-end application
- Use this URL in your own application to get an authorization code
- Make a Number Verification Request using this code to verify the number
This package contains methods to help with Steps 1 and 3.
Get an OIDC URL
from vonage_network_number_verification import CreateOidcUrl
url_options = CreateOidcUrl(
redirect_uri='https://example.com/redirect',
state='c9896ee6-4ff8-464c-b393-d56d6e638f88',
login_hint='+990123456',
)
url = number_verification.get_oidc_url(url_options)
print(url)
Get your user's device to follow this URL and a code to use for number verification will be returned in the final redirect query parameters. Note: your user must be connected to their mobile network.
Make a Number Verification Request
from vonage_network_number_verification import NumberVerificationRequest
response = number_verification.verify(
NumberVerificationRequest(
code='code',
redirect_uri='https://example.com/redirect',
phone_number='+990123456',
)
)
print(response.device_phone_number_verified)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file vonage_network_number_verification-1.0.1.tar.gz
.
File metadata
- Download URL: vonage_network_number_verification-1.0.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a28ab7221eb5a7170cf7f4f9fe7be4d22e24df22b217a0396ea4782d0b81ddba |
|
MD5 | 3e10e5a4c856bdb7518ab3aab043200c |
|
BLAKE2b-256 | 5d289560e65595250add6fa3bd81d2741c855e4aa7a06247e757cd03701e69b0 |
File details
Details for the file vonage_network_number_verification-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: vonage_network_number_verification-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b14ea52e4340f694863d57eb66ee5ddfceea08b8b4de7cc69baa829e5e6ccb25 |
|
MD5 | 37800d63bd5f071297b3f3e455f804c3 |
|
BLAKE2b-256 | 9788040f33d548f7f35b62cd19434744aaacdc0dbe7eaffe5c7485d53ca68411 |