🔥 修改每日早报接口 Token 为手动配置

This commit is contained in:
李寻欢
2024-06-24 08:40:24 +08:00
parent de278f25e9
commit 0adc2ff628
3 changed files with 6 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ package utils
import (
"github.com/go-resty/resty/v2"
"go-wechat/config"
"go-wechat/model"
"log"
)
@@ -33,7 +34,7 @@ func (news) MorningPost() (records []string) {
res := resty.New()
resp, err := res.R().
SetHeader("Content-Type", "application/json;chartset=utf-8").
SetQueryParam("token", "cFoMZNNBxT4jQovS").
SetQueryParam("token", config.Conf.System.AlApiToken).
SetResult(&newsResp).
Post("https://v2.alapi.cn/api/zaobao")
if err != nil {