Flow Signin With PKCE - Authorize Client
Post
http://iot-auth.test/oauth/token
Parameter
Field | Type | Description |
---|---|---|
client_id | Text |
Identifies your app to the OAuth server |
redirect_url | Text |
Where the auth server sends the user after approval. |
grant_type | Text |
Fill with the authorization code |
code | Text |
From URL callback code |
code_verifier | Text |
Give the verification code |
{
"access_token": "eyJhbGciOi...",
"token_type": "Bearer",
"expires_in": 3600,
"refresh_token": "def50200..."
}