...
Click on the user icon in the upper right corner and select an option </> API.
Click on OAuth2 Application.
The OAuth2 application defines the requester for access to the application interface. Only full access accounts can create the application. The application can be used to authorize any system account.
When creating an application, you need to enter the following information:
name - any name, e.g. "My application"
application description - any description
list of redirect URLs - The URL to which the user is redirected after authorization
After OAuth2 is created, the application is generated:
...
Code Block |
---|
POST: https://system2.netrex.cz/oauth2/auth/?response_type=code&client_id=CLIENT_ID&redirect_uri=CALLBACK_URL&scope=read,write |
Request parameters:
Parameter | Description |
---|---|
client_id | Identifies the client application |
scope | Comma-separated list of required rights. Possible rights are:
|
redirect_url | URL to which the authorization code should be sent. It must be the same as the URL allowed in the client application definition. |
state | Optional security parameter that is passed back to redirect_url without change along with the authorization code. |
\uD83D\uDCCB Related articles
...