小程序
小游戏
企业微信
微信支付
扫描小程序码分享
微信小程序新版审核不通过,说是需要增加小程序安全接口,后台加了添加了接口,测试什么图片都是errcode:0,errmsg:ok,测试图片涉及政治人物就不放了
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你私信我提供下有问题的图片看下?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
哎,我们就因为这个接口不稳定被举报,现在还被处罚中😑
func MsgSecCheck(token string, content string) string{
client := &http.Client{Timeout: 5 * time.Second}
type Data struct {
//Access_token string `json:"access_token"`
Content string `json:"content"`
}
var data Data
data = Data{
//Access_token:token,
Content:content,
b ,_ := json.Marshal(data)
log.Println("b",data)
body := bytes.NewBuffer(b)
log.Println("body",body)
resp, _ := client.Post("https://api.weixin.qq.com/wxa/msg_sec_check?access_token="+token,"content-type:application/json;charset=UTF-8",
body)
resp.Header.Set("Content-Type", "application/json; encoding=utf-8")
defer resp.Body.Close()
var buffer2 [512]byte
result2 := bytes.NewBuffer(nil)
for {
n, err := resp.Body.Read(buffer2[0:])
result2.Write(buffer2[0:n])
if err != nil && err == io.EOF {
break
} else if err != nil {
panic(err)
var resultData2 = result2.String()
log.Println("res213",resultData2)
return resultData2
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你私信我提供下有问题的图片看下?
哎,我们就因为这个接口不稳定被举报,现在还被处罚中😑
func MsgSecCheck(token string, content string) string{
client := &http.Client{Timeout: 5 * time.Second}
type Data struct {
//Access_token string `json:"access_token"`
Content string `json:"content"`
}
var data Data
data = Data{
//Access_token:token,
Content:content,
}
b ,_ := json.Marshal(data)
log.Println("b",data)
body := bytes.NewBuffer(b)
log.Println("body",body)
resp, _ := client.Post("https://api.weixin.qq.com/wxa/msg_sec_check?access_token="+token,"content-type:application/json;charset=UTF-8",
body)
resp.Header.Set("Content-Type", "application/json; encoding=utf-8")
defer resp.Body.Close()
var buffer2 [512]byte
result2 := bytes.NewBuffer(nil)
for {
n, err := resp.Body.Read(buffer2[0:])
result2.Write(buffer2[0:n])
if err != nil && err == io.EOF {
break
} else if err != nil {
panic(err)
}
}
var resultData2 = result2.String()
log.Println("res213",resultData2)
return resultData2
}