PKCE values
Code verifier
Generate PKCE values to begin.Code challenge
Generate PKCE values to begin.Authorization URL
https://accounts.google.com/o/oauth2/v2/auth?response_type=code&client_id=demo-client&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fcallback&scope=openid+profile+email&state=8SRrNKhGFgadIX4BeWsB1staToken request
curl -X POST "https://oauth2.googleapis.com/token" \ -H "Content-Type: application/x-www-form-urlencoded" \ --data-urlencode "grant_type=authorization_code" \ --data-urlencode "client_id=demo-client" \ --data-urlencode "code=" \ --data-urlencode "redirect_uri=http://localhost:3000/callback" \ --data-urlencode "code_verifier="
Your client secret is processed only in your browser and is never sent to KalpLabs.