- 音视频图片审核低俗图片也能审核通过?
[图片] public function checkImageResult($userId,$imgUrl,$type = 1) { $token = $this->getAccessToken($userId); $client = new Client(); $headers = []; // media_type=1:音频;2:图片 // scene=场景枚举值(1 资料;2 评论;3 论坛;4 社交日志) $body = [ 'openid' => $this->getOpenId($userId), 'media_url'=>$imgUrl, 'media_type'=>2, 'scene' => $type, 'version' => 2 ]; $request = new Request('POST', 'https://api.weixin.qq.com/wxa/media_check_async?access_token=' . $token, $headers, json_encode($body,JSON_UNESCAPED_UNICODE) ); $res = $client->sendAsync($request)->wait(); $result = $res->getBody()->getContents(); $result = json_decode($result,1); if ($result['errmsg'] == 'ok' && $result['errcode'] == 0) { return $result; } else { throw new Exception("您上传的头像含有敏感信息,无法发布"); } } 图片地址:域名 + /uploads/20240926/79f5817fbcb5112c0dd3b5c14112bda4.jpg 接口返回结果:array(3) { ["errcode"] => int(0) ["errmsg"] => string(2) "ok" ["trace_id"] => string(26) "66f522fe-268e228d-3c5deb78" } 这种也能审核成功正常吗?
09-26 - 【已解决】文本内容安全识别 是不是不准确啊?
接口地址:https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/sec-center/sec-check/msgSecCheck.html [图片] public function checkTextResult($token,$text,$openid) { $client = new Client(); $headers = []; $body = [ 'openid' => $openid, 'scene' => '2', 'content' =>mb_convert_encoding($text,"UTF-8"), 'version' => '2' ]; $request = new Request('POST', 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token=' . $token, $headers, json_encode($body) ); $res = $client->sendAsync($request)->wait(); $result = $res->getBody()->getContents(); $result = json_decode($result,1); if ($result['errmsg'] == 'ok' && $result['result']['suggest'] == 'pass') { return $result; } else { throw new Exception("您的内容含有敏感信息,请修改"); } } 以上是我发布的评论内容,检测结果这也能过吗?
09-26 - 微信登录与企业微信登录审核步骤流程是什么?
1.就是我们开发了一个企业微信小程序,要使用企业微信登录。 2.现在小程序还处于未发布状态,并且未关联到企业微信。 现在在调试中企业微信登录一直提示错误。 array(2) { ["errcode"] => int(48002) ["errmsg"] => "api forbidden, hint: [1727140504128590686034626], from ip: 175.178.xx.xxx, more info at https://open.work.weixin.qq.com/devtool/query?e=48002" } 3.在关联企业微信关联小程序的时候一直提示 “您的小程序未发布审核”,一直关联不上, 4.所以我提交了审核,提交审核是让企业微信人员审核还是非企业审核人员? 4.1 如果我用企业登录相关api就会提示40082,提交到企业微信审核就会出错。 4.2 使用非企业登录API可以正常登录,是让非企业微信审核员审核通过后,在关联企业微信吗?
09-25