ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 刷新token 接口:http://waimai.wboll.com/authorized/author_token_by_refresh_token get请求参数: | 字段名称 | 说明 | | --- | --- | | app_id | 开发者ID | | refresh_token | token刷新凭证 | 响应: | 参数 | 名称 | | --- | --- | | head | 状态信息 | | body | 响应信息 | head字段说明: | 参数 | 名称 | | --- | --- | | code | 状态码 200=成功,其他code表示失败 | | msg | 状态说明 | body字段说明: | 字段名称 | 说明 | | --- | --- | | access_token | 授权成功的access_token | | expires_in | access_token有效时间 | | refresh_token | access_token刷新凭证 | | expires_refresh_in | refresh_token有效时间 | 响应示例 ```js { "head":{ "code":200, "msg":"" }, "body":{ "access_token":"57b70d42290406da132re89eb9198ac2792bd826", "expires_in":2592000, "refresh_token":"2d113f37c9bda236xd58c7a242e7deb4", "expires_refresh_in":3888000 } } ``` **测试一下** ```bash curl -d "app_id=123456&refresh_token=2d113f37c9bda236xd58c7a242e7deb4" http://waimai.wboll.com/authorized/author_token_by_refresh_token ```