应用方刷新access_token
更新时间: 2019-11-04
注意:由于access_token拥有较短的有效期,当access_token超时后,可以使用refresh_token进行刷新,refresh_token有效期为30天,当refresh_token失效之后,需要重新获得授权;
1.通讯方式
服务器访问方式:https协议POST方法
2.协议格式
Json协议
3.接口地址
https://auth.chaoxing.com/sns/oauth2/refresh_token/v1.0?appid=&grant_type=&refresh_token=
参数名 |
参数说明 |
appid |
应用唯一标识APPID |
refresh_token |
平台给予的授权接口调用凭证(上述接口中获取到直接原封传输即可) |
grant_type |
固定填写为:refresh_token |
4.返回信息说明
正确返回:
{
"access_token":授权接口调用凭证,注意:此access_token与基础支 持的access_token不同,
"expires_time": access_token凭证超时时间点(yyyy-MM-dd HH:mm:ss"),
"refresh_token":用户刷新access_token标识,
"openid": 用户唯一标识,
"scope": 用户授权的作用域,使用逗号(,)分隔
}
遇错返回:
{
"errcode": 错误状态码,
"errmsg": 错误说明
}