What is PKCE?
PKCE (Proof Key for Code Exchange) protects the OAuth authorization code flow for public clients by binding the token request to a high-entropy code_verifier and its SHA-256 code_challenge.
This playground focuses on local PKCE generation with WebCrypto so you can copy verifier/challenge pairs into your OAuth client, SPA, mobile app, or test flow without sending data to a server.
How to use this tool
- Generate a code_verifier / code_challenge pair and copy them into your client config.
- Send the challenge in your authorization request and retain the verifier for the token request.
- Use the OAuth / OIDC RP tool when you want to run the full redirect and token flow end to end.
Frequently asked questions
Is the code_verifier uploaded?
No. Generation and hashing run in your browser with the Web Crypto API.
Does this run the full OAuth flow?
No. This page is intentionally limited to PKCE value generation. Use the OAuth / OIDC RP tool for live authorization requests, callbacks, and token exchange.