- 新版一次性订阅消息invalid notify_code?
Array ( [url] => https://api.weixin.qq.com/wxa/set_user_notify?access_token=84_tjrejc0izv1TeLsKuI6o9NBOfRqdu0z-SUD_5aeGPKE-oOK_bdmKxgYbMy-B5yCmiNDmvSaRO2PgTXrXRlCNiBVllfo1_SaU72srVt6L5hf7TD36PnzmNcQy888dc8oURMaAJAKHC [data] => Array ( [notify_type] => 1003 [openid] => ou99us67p6U30f4VD20zzKySNcV1k [notify_code] => 4200002377202409286748685915 [content_json] => {"cur_status":9,"product_count":1,"wxa_path_query":"","product_list":{"product_img":"https:\/\/img.52cee.cn\/task_info\/20240419\/20240419_6621e311277e9_533.png","product_name":"\u5927\u9999\u8549","product_price":"100","product_path_query":"","count":"1","single_price":""}} ) [header] => Array ( [Content-Type] => application/json ) ) string(80) "{"errcode":85437,"errmsg":"invalid notify_code rid: 66f74e25-600963df-787d5905"}" 一直提示我notify_code不存在,我这都支付了一个小时了,从支付完5分钟就开始试,一直不存在
09-28 - 如何实现小程序客服带样式的内容?
[图片] 一进客服页面,给客户自动发送的内容,有热点,寄件,订单,优惠。下面的内容是放在这个选项卡里面。这个内容是怎么设置呢。是第三方直接发送了个带样式的内容吗?我记得第三方不能直接发送带样式的内容的。还有内容输入框上面的标签是在那设置呢?哪位大神给解答一下
09-05 - 违禁词检测不生效
亲帮我看看我这个违禁词调用不生效 参数$param = array('content' => $content,'version'=>2,'scene'=>1,'openid'=>$openid); url 地址:https://api.weixin.qq.com/wxa/msg_sec_check?access_token=%s 函数: public function checkMsg($access_token,$param){ $post_arr['url'] = sprintf(Comm_Config::getUseStatic('api.weixin.msg_check'),$access_token); $post_arr['data'] = $param; $post_arr['header']['Content-Type'] = 'application/json'; try { $check_info = Helper_Http::post($post_arr); return $check_info; } catch (ApiException $e) { Exception_ErrorHandler::handleException($e); return array('code'=>$e->getCode(),'msg'=>$e->getMessage()); } } 啥词都检测不出来,我post 调用的。是我那写的有问题吗
08-13 - 图片违规检测,不起作用
https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/sec-center/sec-check/mediaCheckAsync.html 我直接在接口里面调用的,不管我传什么图片微信异步回调给我的数据都是正常的 ,这是异步返回的数据{"ToUserName":"xxxx","FromUserName":"xxxxx","CreateTime":1723399339,"MsgType":"event","Event":"wxa_media_check","appid":"xxxcxxc","trace_id":"66b8fcaa-6a8b2125-0f03aa4e","version":2,"detail":[{"strategy":"content_model","errcode":0,"suggest":"pass","label":100,"prob":90}],"errcode":0,"errmsg":"ok","result":{"suggest":"pass","label":100}} 我的请求是 $dd = WeixinModel::checkMedia('https://img.52cee.cn/task_info/20240812/20240812_66b8fffbe4500_620.png','xxxxxxx'); public function checkMedia($access_token,$param){ $post_arr['url'] = sprintf(Comm_Config::getUseStatic('api.weixin.media_check'),$access_token); $post_arr['data'] = $param; $post_arr['header']['Content-Type'] = 'application/json'; try { $qrcode_info = Helper_Http::post($post_arr); return $qrcode_info; } catch (ApiException $e) { Exception_ErrorHandler::handleException($e); return array('code'=>$e->getCode(),'msg'=>$e->getMessage()); } }
08-12