- 支付
- 私域
- 公域
- 营销
- 资金
- 会员
- 信用
- 安全
- 其他
换取应用授权令牌
开发环境
开发环境
POST
/v3/alipay/open/auth/token/app
alipay.open.auth.token
刷新应用授权令牌,ISV可通过获取到的refresh_token刷新app_auth_token,刷新后老的refresh_token会在一段时间后失效(失效时间为接口返回的re_expires_in)。
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/v3/alipay/open/auth/token/app' \
--header 'Content-Type: application/json' \
--data-raw ''
响应示例响应示例
200 - 示例 1
{
"app_auth_token": "201509BBeff9351ad1874306903e96b91d248A36",
"app_refresh_token": "201509BBdcba1e3347de4e75ba3fed2c9abebE36",
"auth_app_id": "2013121100055554",
"expires_in": "123456",
"re_expires_in": "123456",
"tokens": [
{
"app_auth_token": "201509BBeff9351ad1874306903e96b91d248A36",
"app_refresh_token": "201509BBdcba1e3347de4e75ba3fed2c9abebE36",
"auth_app_id": "2013121100055554",
"expires_in": "123456",
"re_expires_in": "123456",
"user_id": "2088102150527498"
}
],
"user_id": "2088102150527498"
}
请求参数
Body 参数application/json
code
string
可选
示例值:
1cc19911172e4f8aaa509c8fb5d12F56
grant_type
string
可选
示例值:
authorization_code或者refresh_token
refresh_token
string
可选
示例值:
201509BBdcba1e3347de4e75ba3fed2c9abebE36
示例
返回响应
🟢200common response
application/json
Body
app_auth_token
string
应用授权令牌
示例值:
201509BBeff9351ad1874306903e96b91d248A36
app_refresh_token
string
刷新令牌
示例值:
201509BBdcba1e3347de4e75ba3fed2c9abebE36
auth_app_id
string
可选
示例值:
2013121100055554
expires_in
string
可选
示例值:
123456
re_expires_in
string
可选
示例值:
123456
tokens
array[object (AppTokenExchangeSubElement) {6}]
可选
app_auth_token
string
应用授权令牌
示例值:
201509BBeff9351ad1874306903e96b91d248A36
app_refresh_token
string
刷新令牌
示例值:
201509BBdcba1e3347de4e75ba3fed2c9abebE36
auth_app_id
string
授权商户appid
示例值:
2013121100055554
expires_in
string
过期时间
示例值:
123456
re_expires_in
string
刷新令牌过期时间
示例值:
123456
user_id
string
可选
示例值:
2088102150527498
user_id
string
可选
示例值:
2088102150527498
🔴500请求失败
修改于 2023-11-23 05:54:21