Cannot found the serial(`61520B383*******B274DE9463F130`)'s configuration, w hich's from the response(header:Wechatpay-Serial), your's 708D0B7D***** y意思是接口返回的证书序列号和你发起请求的不一样。原因是微信更新证书了。调用下更新证书的接口把本地平台证书更新下。其实不影响,只是说你本地没办法校验微信返回的数据是否正确。
微信支付V3示例代码相关问题1、通过下面命令安装 composer require wechatpay/wechatpay 2、需要手动修改代码 在\vendor\wechatpay\wechatpay\src\ClientJsonTrait.php文件大概222行加个! if (!array_key_exists($config['serial'], $config['certs'])) { throw new Exception\InvalidArgumentException(sprintf( Exception\ERR_INIT_CERTS_EXCLUDE_MCHSERIAL, implode(',', array_keys($config['certs'])), $config['serial'] )); } 3、Native支付下单示例不知为啥总是报错 Cannot found the serial(`61520B383*******B274DE9463F130`)'s configuration, which's from the response(header:Wechatpay-Serial), your's 708D0B7D***** 但其实是成功的,最后在try catch里才能获取到 catch (\Exception $e) { // 进行错误处理 echo $e->getMessage(), PHP_EOL; if ($e instanceof \GuzzleHttp\Exception\RequestException && $e->hasResponse()) { $r = $e->getResponse(); echo $r->getStatusCode() . ' ' . $r->getReasonPhrase(), PHP_EOL; echo $r->getBody(), PHP_EOL, PHP_EOL, PHP_EOL; } echo $e->getTraceAsString(), PHP_EOL; } 上面的问题3不知哪位大神指点下
2022-08-26这个截图里的『联系商家』按钮,打开小程序后是空白: [图片]
视频号订单里的联系商家按钮打开是空白怎么解决?已经通过更新商家信息接口设置了客服路径和手机,但是在视频号订单详细信息里,点击『联系商家』,打开的小程序是空白,请教这个是什么原因? https://api.weixin.qq.com/shop/account/get_info "service_agent_path": "pages/member/index", "service_agent_phone": "1752130****", "service_agent_type": [1, 0, 2],
2022-06-27