小程序
小游戏
企业微信
微信支付
扫描小程序码分享
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,看下这个。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
试试骂人的脏话也行,有些脏话会过不了。
func CheckMsg(msg string) (result gin.H){
checkAccessToken();
param := map[string]string{
"content": msg,
}
json, _ := json.Marshal(param);
result = httpPost("https://api.weixin.qq.com/wxa/msg_sec_check?access_token=" + access_token, json)
return;
func httpPost(url string, params []byte) gin.H{
resp, err := http.Post(url,"application/json",bytes.NewBuffer(params))
resp.Header.Add("Accept-Language", "zh-CN");
resp.Header.Add("Connection", "Keep-Alive");
resp.Header.Add("Cache-Control", "no-cache");
if err != nil {
fmt.Println(err)
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
// handle error
response := gin.H{};
json.Unmarshal(body, &response);
return response;
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,看下这个。
试试骂人的脏话也行,有些脏话会过不了。
func CheckMsg(msg string) (result gin.H){
checkAccessToken();
param := map[string]string{
"content": msg,
}
json, _ := json.Marshal(param);
result = httpPost("https://api.weixin.qq.com/wxa/msg_sec_check?access_token=" + access_token, json)
return;
}
func httpPost(url string, params []byte) gin.H{
resp, err := http.Post(url,"application/json",bytes.NewBuffer(params))
resp.Header.Add("Accept-Language", "zh-CN");
resp.Header.Add("Connection", "Keep-Alive");
resp.Header.Add("Cache-Control", "no-cache");
if err != nil {
fmt.Println(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
response := gin.H{};
json.Unmarshal(body, &response);
return response;
}