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.8.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.8.0.tar.gz | 15.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vercel_oidc_bundle-0.8.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 32.1 kB
Release files / vercel_oidc_bundle-0.8.0.tar.gz
| Download URL | vercel_oidc_bundle-0.8.0.tar.gz |
|---|---|
| Size | 15.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f311754bc062df34cace72997b596421d5d3987cedc360de0997ff8168053373
|
|
BLAKE2b-256 checksum How to use checksums |
c8d8c5a27e4a971a87717d607aaf5046ef3960005639ca07bfd48b61a66caff5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.8.0-py3-none-any.whl
| Download URL | vercel_oidc_bundle-0.8.0-py3-none-any.whl |
|---|---|
| Size | 16.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5b10f0e7f86a08c3e84f8d09c309fa273b5e14a2aaf30f8a7802e3edd7a45719
|
|
BLAKE2b-256 checksum How to use checksums |
f20ec5992cf9812f265c6fa05f94a44da93c74ce017f844bbbed635f3b8836af
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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}
|