相同内容的短信,发给多个手机号。有的手机号可以正常发送,有的会显示“(MK:100C)运营商关键词拦截”。 我这边是调用的 sendsmsv2 接口。
调用微信云开发的发送短信接口一直提示(MK:100C)运营商关键词拦截?// 调用微信云开发的短信发送接口 const result = await cloud.openapi.cloudbase.sendSms({ env: 'cloud1xxxx', "phone_number_list": [ phone // 使用传入的手机号 ], "sms_type": "Notification", // 短信类型,可根据需要修改 // 移除content字段,避免与模板发送冲突 "template_id": "844110", // 使用通用的短信模板 // "template_param_list": [ // '验证码是:' + code, // 直接传入验证码,不要添加"验证码"前缀 // "5" // 有效期(分钟) // ], "path": "", "template_param_list": ["能力上新", "/cloud-admin/jump-mp.html"], "resource_appid":"xxxx" });
06-17今天客户联系说最近几天小程序 WebView 中部分图片加载不出来(画布中加载)。 图片地址改成 https 就好了。
微信小程序可以使用 http 的图片资源吗?之前是可以的,从昨天开始,PC端http资源的图片不显示了,请问微信小程序可以使用 http 的图片资源吗?PC端和手机端小程序使用图片资源类型不一样吗? PC端的错误信息: Mixed Content: The page at 'https://servicewechat.com/wx******/0/page-frame.html' was loaded over HTTPS, but requested an insecure image 'http://******/Upload/SUBabc/image/20240410/2404101427195143.png'. This request has been blocked; the content must be served over HTTPS.
2024-04-16