珊瑚安全
https://api.weixin.qq.com/wxa/msg_sec_check?access_token=ACCESS_TOKEN 不管什么内容结果都是errcode为0
[图片][图片]
小程序怎么做文本过滤?微信有接口嘛?
上次审核失败了,但我们明明用了珊瑚文本内容安全的接口过滤的,审核回复最新的敏感词仍然可以通过 [图片] 所以想联系珊瑚文本的客服,结果周一发的消息,今天周四了都没有回,这个问题要怎么解决? [图片]
我们接入了后置的微信官方的内容安全API,现在的问题是用户成功发评论后需要等待极长的时间进行审核,用户需要多次从其他页面跳回本页后才能显示输入的评论内容,这个正常吗?如果不正常如何解决?
我在过滤的内容的时候,使用测试中的那段数据,返回的还是0为什么?
[图片] 特3456书yuuo莞6543李zxcz蒜7782法fgnv级 我发送的这个内容 appid是wx83505b27340adf62 能帮我看下不!
我在腾讯珊瑚营销平台注册,只能等待珊瑚给发邮件么?还是我什么环节弄错了? https://coral.m.qq.com/ 这个官网正确么? 向大佬求教,新人小白真心求教:_sugers_
我用的这个接口,珊瑚图片安全检测 wx.getFileSystemManager().readFile({ filePath: e.tempFilePath, encoding: "base64", success: function(e) { t.doImgSecCheck() }) doImgSecCheck: function () { var d = Date.now() wx.serviceMarket.invokeService({ service: 'wxee446d7507c68xxx', api: 'imgSecCheck', data: { "Action": "ImageModeration", "Scenes": ["PORN", "POLITICS", "TERRORISM", "TEXT"], "ImageUrl": "http://mat1.gtimg.com/pingjs/ext2020/qqindex2018/dist/img/qq_logo_2x.png", "ImageBase64": "", "Config": "", "Extra": "" }, }).then(res => { console.log(JSON.stringify(res)) wx.showModal({ title: 'cost', content: (Date.now() - d) + ' ', }) }) }, 用ImageUrl 是没有问题的。 用base64也是没有问题的 开发工具上运行 但是真机调试的时候,用base64就一直没有反应。 开发工具测试就正常流畅 请问大家有遇到过吗
使用珊瑚安全校验的接过,你们自己的审核人员都不认同,那让我们小程序开发人员怎么办?用了你们的东西也不给过,小程序不做了?
珊瑚安全检测,”你好“,返回称违规内容,请问如何解决
云函数 msgSecCheck, 返回值中没有 errCode ? res===={"errMsg":"cloud.callFunction:ok","result":{"content":"1234","userInfo":{"appId":"xxx","openId":"xxx"}},"requestID":"de78dd2f-aed7-11ea-83c2-525400e7bfe4"}
在线等
用guzzle实现的。 [图片]
珊瑚图片内容安全报错如何解决? [图片] 调用方式1: // 发表动态 app.router('publish-feed', async (ctx, next) => { const wxContext = cloud.getWXContext() var openid = wxContext.OPENID let feedPublish = await feedCollection.add({ data: { sender_openid: openid, ...event.newMoment, create_time: db.serverDate() } }) // 调用珊瑚图片内容安全 try { var result = await cloud.openapi.serviceMarket.invokeService({ service: "wxee446d7507c68b11", api: "imgSecCheck", data: { "Action": "ImageModeration", "Scenes": ["PORN", "TERRORISM", "POLITICS"], "ImageUrl": "http://mat1.gtimg.com/pingjs/ext2020/qqindex2018/dist/img/qq_logo_2x.png", "ImageBase64": "", "Config": "", "Extra": "" }, clientMsgId: 'monster-wx139544cf7cfe7adb' }) console.log("security.imgSecCheck result: ", result) } catch (error) { console.log("security.imgSecCheck error: ", error) } ctx.body = feedPublish }) 报错1: 2020-12-22T17:41:23.113Z security.imgSecCheck error: { Error: errCode: 9301002 | errMsg: openapi.serviceMarket.invokeService:fail call api service failed request id:[MLw4UqiTQMb50Lfljj-zHnQlUxNEHNO9Vj2QZgZrgQ9gnl5D3xznTu8d0uj7kpeNcJ4] rid: 5fe22fc2-4dbd9c6c-4f0bfdf0 at callWXOpenAPI (/var/user/node_modules/wx-server-sdk/index.js:2227:31) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) errCode: 9301002, errMsg: 'openapi.serviceMarket.invokeService:fail call api service failed request id:[MLw4UqiTQMb50Lfljj-zHnQlUxNEHNO9Vj2QZgZrgQ9gnl5D3xznTu8d0uj7kpeNcJ4] rid: 5fe22fc2-4dbd9c6c-4f0bfdf0' } END RequestId:e78e03f9-447c-11eb-b00b-525400fff70d Report RequestId:e78e03f9-447c-11eb-b00b-525400fff70d Duration:421ms Memory:256MB MemUsage:43.890625MB 调用方式2: // 发表动态 app.router('publish-feed', async (ctx, next) => { const wxContext = cloud.getWXContext() var openid = wxContext.OPENID let feedPublish = await feedCollection.add({ data: { sender_openid: openid, ...event.newMoment, create_time: db.serverDate() } }) console.log("event.newMoment: ", event.newMoment) // 调用珊瑚图片内容安全 try { var result = await cloud.openapi.serviceMarket.invokeService({ service: "wxee446d7507c68b11", api: "imgSecCheck", data: { Action: "ImageModeration", Scenes: ["PORN", "TERRORISM", "POLITICS"], ImageUrl: "http://mat1.gtimg.com/pingjs/ext2020/qqindex2018/dist/img/qq_logo_2x.png", ImageBase64: "", Config: "", Extra: "" }, clientMsgId: 'monster-wx139544cf7cfe7adb' }) console.log("security.imgSecCheck result: ", result) } catch (error) { console.log("security.imgSecCheck error: ", error) } ctx.body = feedPublish }) 报错2: 2020-12-22T17:47:48.106Z security.imgSecCheck error: { Error: errCode: 9301002 | errMsg: openapi.serviceMarket.invokeService:fail call api service failed request id:[MLwXfaQ54JUhmjy5S44tPFdxfcBiD0aGKLktBqRGTd_aZc-NmJeZ-U4QVxhn-xvbr7A] rid: 5fe23143-5b2db01a-0b2644d6 at callWXOpenAPI (/var/user/node_modules/wx-server-sdk/index.js:2227:31) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) errCode: 9301002, errMsg: 'openapi.serviceMarket.invokeService:fail call api service failed request id:[MLwXfaQ54JUhmjy5S44tPFdxfcBiD0aGKLktBqRGTd_aZc-NmJeZ-U4QVxhn-xvbr7A] rid: 5fe23143-5b2db01a-0b2644d6' } END RequestId:cd950d64-447d-11eb-8b0a-5254007c2bc0 Report RequestId:cd950d64-447d-11eb-8b0a-5254007c2bc0 Duration:516ms Memory:256MB MemUsage:45.132812MB
[图片]
谁有敏感词库,分享一下,我找了好久,还是没有通过
我分别测试以下三段都能正常返回0: 特3456书yuuo莞6543李zxcz蒜7782法fgnv级 完2347全dfji试3726测asad感3847知qwez到 黄色小说 参数是json如下图所示 [图片]
security.mediaCheckAsync的异步消息推送结果接收结果是null?这个怎么处理?java后台,消息推送的参数是什么类型的?我是用object接收的
[图片]