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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vonage_network_number_verification-1.0.2.tar.gz.
File metadata
- Download URL: vonage_network_number_verification-1.0.2.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 |
b67fdeb760f80adc203f735a7ee8f5a07f6f45f35365e496f620c5300a0703ec
|
|
| MD5 |
1f42e6a28ada090fbd5f4a83260e25e1
|
|
| BLAKE2b-256 |
411be51dc0482da370cf736e5a8a178a7afe99ec2874a39e37dd7bfc28644b4f
|
File details
Details for the file vonage_network_number_verification-1.0.2-py3-none-any.whl.
File metadata
- Download URL: vonage_network_number_verification-1.0.2-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 |
da28cd262c0b74f078b6b6d31f36736b270365f532cfe0d2f21b383fb5340d77
|
|
| MD5 |
a3fa98decf3ac0d1166c2ca56ec8cef3
|
|
| BLAKE2b-256 |
8aed2c6bad16f220f63ec39ab128ac9fa61d809ecb13194c360d0b1b119c38c5
|