vercel-oidc-bundle
This is a version of vercel-oidc with third-party dependencies bundled. For normal use, install the unbundled vercel-oidc package instead: https://pypi.org/project/vercel-oidc/
OIDC
vercel.oidc retrieves and decodes Vercel OIDC tokens.
Async Token Lookup
from vercel.oidc import decode_oidc_payload
from vercel.headers import set_headers
from vercel.oidc.aio import get_vercel_oidc_token
async def main() -> None:
token = await get_vercel_oidc_token()
payload = decode_oidc_payload(token)
project_id = payload.get("project_id")
Token lookup prefers the x-vercel-oidc-token request header registered with
vercel.headers.set_headers(), then VERCEL_OIDC_TOKEN. The compatibility
alias vercel.oidc.set_headers() updates the same header context. In local development,
you can load a short-lived token dynamically:
VERCEL_OIDC_TOKEN=$(vc project token some-project) some-command
Use vercel.oidc.get_vercel_oidc_token() for synchronous code.
Verification
Requires the verify extra, which adds pyjwt[crypto]:
pip install "vercel-oidc[verify]"
from vercel.oidc import extract_bearer_token, verify_vercel_oidc_token
claims = verify_vercel_oidc_token(extract_bearer_token(request.headers))
Verification allows only RS256, resolves the signing key by kid from Vercel's
JWKS, and pins the issuer to Vercel's OIDC service, which mints both
https://oidc.vercel.com and the team-scoped https://oidc.vercel.com/<team>.
It fails closed: when the expected project or environment cannot be resolved
from the arguments, VERCEL_PROJECT_ID, or VERCEL_TARGET_ENV/VERCEL_ENV,
every token is rejected. vercel.oidc.aio.verify_vercel_oidc_token() is the
async twin.
Token Identity
A token is a signature over an identity plus an expiry, so one identity is issued many tokens over time. To key client-side state on the identity rather than on the token, use:
from vercel.oidc import resolve_vercel_oidc_token_identity
identity = resolve_vercel_oidc_token_identity(token) # stable across a refresh
The token is verified first — signature, issuer and expiry — and only then are its identity claims reduced to an opaque digest that carries no credential and is safe to log.
What it does not do is authorize: it returns no claims and does not check the
project, environment, owner or audience. Use verify_vercel_oidc_token() for that.
Release files for vercel-oidc-bundle 0.9.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vercel_oidc_bundle-0.9.0.tar.gz | 15.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vercel_oidc_bundle-0.9.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 32.1 kB
Release files / vercel_oidc_bundle-0.9.0.tar.gz
| Download URL | vercel_oidc_bundle-0.9.0.tar.gz |
|---|---|
| Size | 15.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5f3cb1d93deafbd8078632a3cc0dd434d51177e5f7e950672887f2cbaae7f465
|
|
BLAKE2b-256 checksum How to use checksums |
611156dfa18d177694067cdd9a4405365b4a05369dfcdf4d7b212b3a5d631874
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / vercel_oidc_bundle-0.9.0-py3-none-any.whl
| Download URL | vercel_oidc_bundle-0.9.0-py3-none-any.whl |
|---|---|
| Size | 16.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2fe8aa5cd687bcac471373c76642057b185bc0191bca6efd8b6f5a4ec9fad3f5
|
|
BLAKE2b-256 checksum How to use checksums |
2d82fc5cc985f248f2d260055c841c8918cb71b037699ee3ee7211084f851b4a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|