Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

三方应用获取租户的access_token

请求说明

请求地址https://openapi.wps.cn/oauth2/token
请求方法POST
权限要求

请求头

Header 名称参数类型是否必填说明
Content-Typestring使用:application/x-www-form-urlencoded

请求体(Body)

名称参数类型是否必填说明
grant_typestring授权类型,使用:client_credentials
client_idstring应用 APPID
client_secretstring应用 APPKEY
app_ticketstring获取到的 app_ticket,有关 app_ticket 的详细介绍,请参考通用参数
company_idstring企业 id

请求地址示例

[POST] https://openapi.wps.cn/oauth2/token

请求体示例

// Content-Type: application/x-www-form-urlencoded
// 数据示例

grant_type=client_credentials&client_id=AK2024*********&client_secret=6*********&app_ticket=Ok**********S&company_id=L*****

接口成功响应体

📌请注意: 每个 access_token 的有效时长为 2 小时,若 access_token 未过期仍可使用,直到有效期 expires_in 截止失效。 在实际开发对接中,应用应当维护 access_token 的有效状态,在调接口时优先使用已获取的 access_token,无需且不推荐每次都重新请求获取 access_token

名称参数类型说明
access_tokenstring授权 token
expires_ininteger有效时长,单位:秒
token_typestringtoken 类型,一般为 bearer

接口失败响应体

名称参数类型说明
codeinteger错误码。非 0 表示失败,参照《状态码说明》
msgstring错误信息

响应体示例

json
// Content-Type: application/json

{
  "access_token": "eyJhbGciOiJFUzI1N**********HQ_JoHbcrL4mZK9Xxg",
  "expires_in": 7200,
  "token_type": "bearer"
}
回到旧版