Authorize (hybrid)
POST {{authPath}}/{{envID}}/as/authorize
This PingOne collection contains only the requests without documentation. For the official PingOne Platform API documentation, see Authorize (hybrid).
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
client_id | string | The application's UUID. | |
code_challenge_method | string | Specifies the computation logic used to generate the code_challenge string. | |
nonce | string | A string that is used to associate a client session with a token to mitigate replay attacks. | |
redirect_uri | string | A string that specifies the URL that specifies the return entry point of the application. | |
response_type | string | The code or token type returned by an authorization request. | |
scope | string | Permissions that determine the resources that the application can access. |
Request Body
[{"name"=>"response_type", "value"=>"code id_token", "datatype"=>"string"}, {"name"=>"client_id", "value"=>"{{appID}}", "datatype"=>"string"}, {"name"=>"redirect_uri", "value"=>"{{redirect_uri}}", "datatype"=>"string"}, {"name"=>"scope", "value"=>"openid profile email", "datatype"=>"string"}, {"name"=>"state", "value"=>"{{state}}", "datatype"=>"string"}]