first push

This commit is contained in:
renzhiyuan 2025-03-07 17:06:31 +08:00
parent 9071be2e14
commit ca74ab6f86
1 changed files with 1 additions and 1 deletions

2
msg.go
View File

@ -43,7 +43,7 @@ func (m *MessageCenter) getAccessToken() (string, error) {
var data accessTokenResponse
url := fmt.Sprintf("%s%s", m.Host, PathAccessToken)
var authParam, _ = json.Marshal(map[string]string{"client_key": m.ClientKey, "client_secret": m.ClientSecret})
res, err := httpclient.FastHttpPost(url, map[string]string{"content-type": "application/json; charset=utf-8"}, authParam, TimeOut)
res, err := httpclient.FastHttpPost(url, m.header, authParam, TimeOut)
if err != nil {
return "", err
}