GET /admin/oauth/clients/{client_id}/tokens
Returns a list of active access tokens and refresh tokens for a specified client.
OAuth Client Management `bearerAuth` application/json
Request Parameters
| Name | In | Type | Required | Default | Example | Constraints | Description |
client_id |
path |
string |
Yes |
|
|
|
Client ID |
page |
query |
integer |
No |
1 |
|
|
Page number |
page_size |
query |
integer |
No |
20 |
|
|
Number of items per page |
Referenced Schemas
dto.OAuthTokenItem
OAuth token info, without token text
| Field | Type | Required | Example | Constraints | Description |
created_at |
string |
No |
2026-04-15T10:30:00Z |
|
|
expires_at |
string |
No |
2026-04-15T10:45:00Z |
|
|
scope |
string |
No |
openid profile email |
|
|
token_type |
string |
No |
access_token |
|
|
user_id |
string |
No |
usr_abc123 |
|
|
dto.OAuthTokenListResponse
| Field | Type | Required | Example | Constraints | Description |
code |
integer |
No |
|
|
|
items |
array of
See dto.OAuthTokenItem |
No |
|
|
Use items uniformly |
message |
string |
No |
|
|
|
pagination |
object |
No |
|
|
Pagination info (nested object) |
timestamp |
string |
No |
|
|
|
total |
integer |
No |
|
|
Total count (flattened for direct reading) |
gitee_com_linmes_authms_base_dto.PageInfo
| Field | Type | Required | Example | Constraints | Description |
has_next |
boolean |
No |
|
|
HasNext indicates whether there is a next page |
has_prev |
boolean |
No |
|
|
HasPrev indicates whether there is a previous page |
page |
integer |
No |
|
|
Page is the current page number (1-based) |
page_size |
integer |
No |
|
|
PageSize is the number of items per page |
total |
integer |
No |
|
|
Total is the total number of items across all pages |
total_pages |
integer |
No |
|
|
TotalPages is the total number of pages |
gitee_com_linmes_authms_base_dto.SimpleResponse
| Field | Type | Required | Example | Constraints | Description |
code |
integer |
No |
|
|
|
message |
string |
No |
|
|
|
timestamp |
string |
No |
|
|
|