English
Get the OAuth application
cURL
curl --request GET \ --url http://127.0.0.1:3000/api/oauth/client/{clientId} \ --header 'Authorization: Bearer <token>'
{ "clientId": "<string>", "name": "<string>", "homepage": "<string>", "redirectUris": [ "<string>" ], "secrets": [ { "id": "<string>", "secret": "<string>", "lastUsedTime": "<string>" } ], "scopes": [ "<string>" ], "logo": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Returns the OAuth application
Show child attributes
Was this page helpful?