小程序
小游戏
企业微信
微信支付
扫描小程序码分享
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以自己前往小程序管理后台-开发管理-安全中心中添加过滤词汇。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
json_encode会将中文进行unicode转码,这个接口不能转码,需要json_encode($str,JSON_UNESCAPED_UNICODE) 心塞啊
我找到原因了, post 的时候,不要去 json_encode。 php 是这样子的。
```
function msgSecCheck($value) {
$access_token = getAccessToken(config('auth.wxapp.appid'), config('auth.wxapp.secret'));
$url = 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token='. $access_token;
$data = [
'content' => $value
];
$result = curl($url, $data, true, true);
$result = json_decode($result, true);
if($result['errcode'] != 0) {
return false;
}
return true;
你好,具体输入什么信息返回errcode:0 errmsg:'ok' ?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
可以自己前往小程序管理后台-开发管理-安全中心中添加过滤词汇。
json_encode会将中文进行unicode转码,这个接口不能转码,需要json_encode($str,JSON_UNESCAPED_UNICODE) 心塞啊
我找到原因了, post 的时候,不要去 json_encode。 php 是这样子的。
```
function msgSecCheck($value) {
$access_token = getAccessToken(config('auth.wxapp.appid'), config('auth.wxapp.secret'));
$url = 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token='. $access_token;
$data = [
'content' => $value
];
$result = curl($url, $data, true, true);
$result = json_decode($result, true);
if($result['errcode'] != 0) {
return false;
}
return true;
}
```
你好,具体输入什么信息返回errcode:0 errmsg:'ok' ?