GET
https://auth.ampersand-it.com/oauth/authorizeOAuth 2.0
Authorization
Security
Description
Authentication type : OAuth 2.0 Authorization Code Flow
Initiates the OAuth 2.0 authorization flow by redirecting the user to the authorization server. If the user is not authenticated, they will be prompted to log in. After successful authentication and authorization, the user is redirected back to the client application with an authorization code.
Request Parameters!
Response302 Redirect
Example Request
Request Parameters
Required
| Parameter | Type | Required | Description |
|---|---|---|---|
response_type |
string | Required |
Must be 'code' for Authorization Code Flow |
client_id |
string | Required |
The client identifier registered with the authorization server |
redirect_uri |
string | Required |
The URI to redirect to after authorization (must be registered for the client) |
scope |
string | Optional |
Space-separated list of requested permissions (e.g., 'openid profile email') |
state |
string | Optional |
Random value to prevent CSRF attacks (recommended) |