Skip to content

Commit

Permalink
access_token的有效期目前为2个小时
Browse files Browse the repository at this point in the history
> access_token的有效期目前为2个小时,目前access_token的有效期通过返回的expire_in来传达,目前是7200秒之内的值。中控服务器需要根据这个有效时间提前去刷新新access_token。

`如果说要提前,那么我7200秒减个5秒应该不过分吧-_-`
https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140183](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140183)

access_token是公众号的全局唯一接口调用凭据,公众号调用各接口时都需使用access_token。开发者需要进行妥善保存。access_token的存储至少要保留512个字符空间。access_token的有效期目前为2个小时,需定时刷新,重复获取将导致上次获取的access_token失效。

公众平台的API调用所需的access_token的使用及生成方式说明:

1. 建议公众号开发者使用中控服务器统一获取和刷新access_token,其他业务逻辑服务器所使用的access_token均来自于该中控服务器,不应该各自去刷新,否则容易造成冲突,导致access_token覆盖而影响业务;

2. 目前access_token的有效期通过返回的expire_in来传达,目前是**7200**秒之内的值。中控服务器需要根据这个有效时间提前去刷新新access_token。在刷新过程中,中控服务器可对外继续输出的老access_token,此时公众平台后台会保证在5分钟内,新老access_token都可用,这保证了第三方业务的平滑过渡;

3. access_token的有效时间可能会在未来有调整,所以中控服务器不仅需要内部定时主动刷新,还需要提供被动刷新access_token的接口,这样便于业务服务器在API调用获知access_token已超时的情况下,可以触发access_token的刷新流程。

公众号和小程序均可以使用AppID和AppSecret调用本接口来获取access_token。AppID和AppSecret可在“微信公众平台-开发-基本配置”页中获得(需要已经成为开发者,且帐号没有异常状态)。调用接口时,请登录“微信公众平台-开发-基本配置”提前将服务器IP地址添加到IP白名单中,点击查看设置方法,否则将无法调用成功。小程序无需配置IP白名单。
  • Loading branch information
TomLiu-GitHub authored Jun 1, 2019
1 parent 4724c1e commit dd962c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accesstoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (s *Server) getAccessToken() (err error) {
return at.Error()
}
Printf("[%v::%v]:%+v", s.AppId, s.AgentId, *at)
at.ExpiresIn = time.Now().Unix() + 500
at.ExpiresIn = time.Now().Unix() + at.ExpiresIn-5
s.accessToken = at
return
}
Expand Down

0 comments on commit dd962c5

Please sign in to comment.