Apps¶
POST /api/v1/apps¶
Create a new application to obtain OAuth2 credentials.
Returns App with client_id
and client_secret
Resource information¶
Response format | JSON |
Requires authentication | No |
Requires user | No |
Available since | 0.0.0 |
Parameters¶
Name | Description | Required |
---|---|---|
client_name |
Name of your application | Required |
redirect_uris |
Where the user should be redirected after authorization | Required |
scopes |
Space separated list of scopes | Required |
website |
URL to the homepage of your app | Optional |
To display the authorization code to the end-user instead of redirecting to a web page, use
urn:ietf:wg:oauth:2.0:oob
inredirect_uris
GET /api/v1/apps/verify_credentials¶
Confirm that the app's OAuth2 credentials work.
Returns App
Resource information¶
Response format | JSON |
Requires authentication | Yes |
Requires user | No |
Available since | 2.0.0 |