{ "request": { "method": "GET", "url": "https://your-tenant.auth0.com/authorize", "query": { "response_type": "code", "client_id": "{AUTH0_CLIENT_ID}", "redirect_uri": "https://app.example.com/callback", "scope": "openid profile email offline_access", "audience": "https://api.example.com", "state": "n0nce_state", "code_challenge": "E9Melhoa2OwvFrEMTJguCHaoeK1t8URWbuGJSstw-cM", "code_challenge_method": "S256" } }, "response": { "redirect_to": "https://app.example.com/callback?code=AUTH_CODE&state=n0nce_state" } }