Authorization request
Last updated
Last updated
Required scopes: No scopes required.
Shows the user a page to give consent to a client with API scopes specified in the query parameter. To follow the PKCE standard, you also have to provide the code_challenge
and code_challenge_type
parameters.
Use the openid
scope to get the id_token
in the POST /token
response for the OIDC authorization.
/authorize
Identifies the client application for the OAuth authorization.
client-id-123
The URI where the user gets redirected after submitting the access consent.
https://make.com
Specifies code for the authorization code grant type.
code
Specifies the scopes for the OAuth access. If you want to specify multiple scopes, separate them with a space or with a comma.
If you are using OpenID for authentication, you have to add the openid scope to get access to OpenID data.
templates:read,scenarios:read,scenarios:run
Allows the client to resume the OAuth flow in a secure manner.
random-state-string
The base64url encoded SHA-256 hash of the random string used as the code_verifier parameter, required for public clients (public client to server communication)
E9Melhoa2OwvFrEMTJguCHaoeK1t8URWbuGJSstw-cM
Specifies the encoding algorithm to create the code_verifier. The only available code_challenge_method is S256.
S256
No body