简体中文
Get the list of authorized applications
cURL
curl --request GET \ --url https://app.teable.cn/api/oauth/client/authorized/list \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[ { "clientId": "<string>", "name": "<string>", "homepage": "<string>", "logo": "<string>", "description": "<string>", "scopes": [ "<string>" ], "lastUsedTime": "<string>", "createdUser": { "name": "<string>", "email": "jsmith@example.com" } } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Returns the list of authorized applications
The response is of type object[].
object[]