1.
Accepts grant_type from form or query parameters; it is required and must equal client_credentials.
2.
Authenticates the supplied client key and secret against an enabled system-integration account.
3.
Returns an access token for that account. The current token lifetime is 7,200 seconds. This flow does not issue a refresh token.
4.
Use the token as Authorization: Bearer <access_token> when calling the other /api/v1 endpoints. The account's assigned REST permissions still determine which endpoints it may call.
1.
从表单或查询参数读取 grant_type;该字段必填且只能是 client_credentials。
2.
使用 client key 和 client secret 认证一个已启用的系统集成账号。
3.
为该账号返回访问令牌;当前有效期为 7,200 秒,本流程不签发 refresh token。
4.
调用其他 /api/v1 接口时使用 Authorization: Bearer <access_token>;账号配置的 REST 权限仍决定它能调用哪些接口。