pull/218/head
wangchuxiao 3 years ago
parent 06370a763c
commit fdefe09187

@ -149,7 +149,6 @@ func (g *Getui) request(url string, content interface{}, token string, returnStr
req.Header.Set(token, token)
}
req.Header.Set("content-type", "application/json")
req.Header.Set("content-type", "charset=utf-8")
resp, err := client.Do(req)
if err != nil {
return err
@ -159,7 +158,7 @@ func (g *Getui) request(url string, content interface{}, token string, returnStr
if err != nil {
return err
}
log.NewInfo(operationID, "getui", utils.GetSelfFuncName(), string(result))
log.NewInfo(operationID, "getui", utils.GetSelfFuncName(), "resp, ", string(result))
if err := json.Unmarshal(result, returnStruct); err != nil {
return err
}

Loading…
Cancel
Save