What is JWKS?
JSON Web Key Set (JWKS) is a standard that allows Chipi Pay to verify your users’ JWT tokens without ever seeing their credentials. Your auth provider exposes a public endpoint with its signing keys, and Chipi uses those keys to verify that tokens are authentic. Any OIDC-compliant provider (Auth0, Cognito, Okta, Keycloak, etc.) exposes a JWKS endpoint.Add Environment Variables
Register JWKS in Chipi Dashboard
Register your auth provider’s JWKS endpoint in the Chipi Dashboard:
- Go to Configure > Auth Provider
- Select Other as your provider
- Paste your provider’s URL or JWKS endpoint
- The dashboard will try OIDC discovery automatically
- Click Verify & Save
Compatible providers
| Provider | JWKS URL pattern |
|---|---|
| Auth0 | https://YOUR_DOMAIN/.well-known/jwks.json |
| AWS Cognito | https://cognito-idp.REGION.amazonaws.com/POOL_ID/.well-known/jwks.json |
| Okta | https://YOUR_DOMAIN/oauth2/default/v1/keys |
| Keycloak | https://YOUR_HOST/realms/REALM/protocol/openid-connect/certs |
