...
Info | ||
---|---|---|
Example - Getting an OAuth 2 Token Using curl This works in bash and zsh. To avoid exposing the credentials we are storing them in variables. For information about how to define variables in any other environment, see the respective documentation. The Client Secret is sensitive information and it is important not to expose it unnecessarily.
|
.
Parameter | Description |
---|---|
access_token | The access token string issued by the authorization server. |
scope | Scopes defined for the token |
expires_in | Validity of the token in seconds |
token_type | The type of token this is, just the string “Bearer”. |
...