Skip to main content

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:

  1. Get an OIDC URL for use in your front-end application
  2. Use this URL in your own application to get an authorization code
  3. 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


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.0.tar.gz.

File metadata

File hashes

Hashes for vonage_network_number_verification-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d2806869af64ced456ba9fa72f9fdab4b36dda223d176fb8f9a9a6001da199b1
MD5 10eeae9df852c3c4529f1c3062c8206d
BLAKE2b-256 8b676fbd86a11d9494dd6cdbfef0d45044f8288e583fe7503683ba070b063e3c

See more details on using hashes here.

File details

Details for the file vonage_network_number_verification-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for vonage_network_number_verification-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b610c3f6d3eec40802f1bd02493fb43b5bf7e0a881780034532c323e686462e7
MD5 85fb8320640cd167cc549f2e61cc875a
BLAKE2b-256 a91fd481d68703af296652c1023da389843a0e5f1bea0e4b3e239e7c0a7ffc2d

See more details on using hashes here.

Supported by

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