7、获取(刷新)授权小程序的接口调用凭据

该API用于在授权方令牌(access_token)失效时,可用刷新令牌(refresh_token)获取新的令牌。请注意,此处TP的access_token有效期一个月,开发者需要自行进行token的缓存,避免token的获取次数达到每日的限定额度(额度限定尚未做)。当换取refresh_token后建议保存。

接口调用请求说明

  1. GET https://openapi.baidu.com/rest/2.0/oauth/token?access_token=ACCESS_TOKEN&refresh_token=REFRESH_TOKEN&grant_type=app_to_tp_refresh_token

参数说明

参数名类型是否必须描述
access_tokenstringTP的access_token,第三方平台接口调用凭据
refresh_tokenstring接口调用凭据刷新令牌,有效期10年,使用后失效
grant_typestring固定字符串: app_to_tp_refresh_token

返回值说明

字段名类型描述
access_tokenstring授权小程序的接口调用凭据
refresh_tokenstring接口调用凭据刷新令牌
expires_inint小程序的Access Token的有效期,单位:秒,默认1小时

返回值示例

  1. {
    access_token: "45.c1cb2c4ddd225536ca80d70875a9f60d.3600.1536148028.FiKQ1VSLjMjS7uaJZlCdbOcjcasQ-mVMFst84kTtF6Sn4je",
    refresh_token: "46.045cabb3f09efe6c8fa570de94a41773.315360000.1851504428.FiKQ1VSLjMjS7uaJZlCdbOcjcasQ-mVMFst84kTtF6Sn4je",
    expires_in: 3600
    }

错误情况下:

字段名类型描述
errorstring错误码;关于错误码的详细信息请参考 http://developer.baidu.com/wiki/index.php?title=docs/oauth/error
error_descriptionstring错误描述信息,用来帮助理解和解决发生的错误