Flow Signin With PKCE - Authorize Request
Get
http://iot-auth.test/oauth/authorize?client_id=
Parameter
Field | Type | Description |
---|---|---|
client_id | Text |
Identifies your app to the OAuth server. |
response_type | Text |
Required for authorization code flow (missing in your example). |
redirect_url | Text |
Where the auth server sends the user after approval. |
scope | Text |
Null |
state | Text |
Give random token max 40 chars |
{
"access_token": "eyJhbGciOi...",
"token_type": "Bearer",
"expires_in": 3600,
"refresh_token": "def50200..."
}