小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开始用xml的方式获取遇到报错,我尝试打印日志看到回调回来的数据是这样的,
{"openid":"owtNA5YFgIcAAlSFm5jmuSVaR5lY"}
只返回了一个openid,也有偶尔会正常的情况,请问有人知道怎么回事吗?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
1,如上所述,需要通过验签,得到的回调数据才是有效数据
2,麻烦提供微信订单号,这边核实微信端数据是否正常。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
先通过验签,然后获得的数据才有价值
public function getMessage(): array
{
if (!empty($this->message)) {
return $this->message;
}
info($this->app['request']->getContent());
try {
$message = XML::parse(strval($this->app['request']->getContent()));
} catch (\Throwable $e) {
throw new Exception('Invalid request XML: '.$e->getMessage(), 400);
if (!is_array($message) || empty($message)) {
throw new Exception('Invalid request XML.', 400);
if ($this->check) {
$this->validate($message);
return $this->message = $message;
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
1,如上所述,需要通过验签,得到的回调数据才是有效数据
2,麻烦提供微信订单号,这边核实微信端数据是否正常。
1,请检查回调url是否能正常公网访问
2,回调url是不能带参数的,请注意
2,是否开启了防火墙,如果开户了防火墙,请添加微信支付回调IP(微信支付回调通知出口IP列表: https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=23_2&index=2)
3,是否正确使用post请求
4,回调url修改成http协议试试
先通过验签,然后获得的数据才有价值
public function getMessage(): array
{
if (!empty($this->message)) {
return $this->message;
}
info($this->app['request']->getContent());
try {
$message = XML::parse(strval($this->app['request']->getContent()));
} catch (\Throwable $e) {
throw new Exception('Invalid request XML: '.$e->getMessage(), 400);
}
if (!is_array($message) || empty($message)) {
throw new Exception('Invalid request XML.', 400);
}
if ($this->check) {
$this->validate($message);
}
return $this->message = $message;
}
info($this->app['request']->getContent());