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.
wechatunion/cgi-bin.token.monitor.go

21 lines
509 B

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