cURL
curl --request POST \ --url {protocol}://{domain}/oauth/authorize \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data action=allow \ --data 'client_id=<string>' \ --data 'redirect_uri=<string>' \ --data 'scope=<string>' \ --data 'state=<string>' \ --data 'code_challenge=<string>' \ --data code_challenge_method=S256
This response does not have an example.
Handle user’s allow/deny decision for OAuth2 authorization
allow
deny
S256
plain
Redirect to redirect_uri with code or error
Was this page helpful?