This commit is contained in:
xxj
2021-12-12 17:08:09 +08:00
parent de9933adb9
commit ad428e80a3
2 changed files with 2 additions and 1 deletions

View File

@@ -133,7 +133,7 @@ func SendPost(requestBody interface{}, responseBody interface{}, url string) err
if err != nil {
return e
}
// mylog.Debug(string(body))
mylog.Debug(string(body))
err = json.Unmarshal(body, &responseBody)
if err != nil {

View File

@@ -39,6 +39,7 @@ type WxTools interface {
GetWebUserinfo(openid, accessToken string) (*WxUserinfo, error) // 获取用户信息
SendWebTemplateMsg(msg TempWebMsg) bool // 发送公众号模板消息
CreateMenu(menu WxMenu) error // 创建自定义菜单
// ----------------------------------------------------
}