You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wechatoffice/cgi-bin.token.monitor.go

21 lines
510 B

package wechatoffice
import (
"context"
"errors"
"time"
)
func (c *Client) GetAccessTokenMonitor(ctx context.Context) (string, error) {
if c.cache.redisClient.Db == nil {
return "", errors.New("驱动没有初始化")
}
result := c.GetCallBackIp(ctx)
if len(result.Result.IpList) > 0 {
return c.config.accessToken, nil
}
token := c.CgiBinToken(ctx)
c.cache.redisClient.Set(ctx, c.getAccessTokenCacheKeyName(), token.Result.AccessToken, time.Second*7000)
return token.Result.AccessToken, nil
}