Tooling for working with JWTs for Vonage APIs in Python.
Project description
Vonage JWT Generator for Python
This package (vonage-jwt
) provides functionality to generate a JWT in Python code.
It is used by the Vonage Python SDK, specifically by the vonage-http-client
package, to generate JWTs for authentication. 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.
Installation
Install from the Python Package Index with pip:
pip install vonage-jwt
Generating JWTs
This JWT Generator can be used implicitly, just by using the Vonage Python SDK to make JWT-authenticated API calls.
It can also be used as a standalone JWT generator for use with Vonage APIs, like so:
Import the JwtClient
object
from vonage_jwt import JwtClient
Create a JwtClient
object
jwt_client = JwtClient(application_id, private_key)
Generate a JWT using the provided application id and private key
jwt_client.generate_application_jwt()
Optional JWT claims can be provided in a python dictionary:
claims = {'jti': 'asdfzxcv1234', 'nbf': now + 100}
jwt_client.generate_application_jwt(claims)
Verifying a JWT signature
You can use the verify_jwt.verify_signature
method to verify a JWT signature is valid.
from vonage_jwt import verify_signature
verify_signature(TOKEN, SIGNATURE_SECRET) # Returns a boolean
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_jwt-1.1.4.tar.gz
.
File metadata
- Download URL: vonage_jwt-1.1.4.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc9aadc683318696c6d426f0abc05295166884fecf9970a7800ea14a99fae71e |
|
MD5 | 73c2fbd95da59f96a0b887bd4ac9cf40 |
|
BLAKE2b-256 | 256d0fbad25735c0a9dc627c2e5cdf1a0ccb481dce0b13e4d06d0b41ab7509aa |
File details
Details for the file vonage_jwt-1.1.4-py3-none-any.whl
.
File metadata
- Download URL: vonage_jwt-1.1.4-py3-none-any.whl
- Upload date:
- Size: 4.2 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 | aae3c98c588d3f383ef6984920c2c9948737f834049bf7bb688b087f04b77584 |
|
MD5 | 902217e695e46653d6a0ffa5f20af0f7 |
|
BLAKE2b-256 | b6fb509bc0520926cb86bb090ac5f4534b319ddab41ce8f1361d6db8028b51d2 |