We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
在大多数情况下,你是不需要显示地去刷新access token的,因为WxMpService会在access token过期的时候自己刷新。
WxMpService
比如我们获取用户信息时微信反馈access token过期,WxMpService会自己刷新access token,然后再次去获取用户信息。并且会将access token更新到WxMpConfigStorage里。
WxMpConfigStorage
如果你的确需要自己手工刷新access token,则可以:
wxMpService.accessTokenRefresh();
获得的新的access token会更新到WxMpConfigStorage中。