参考网址
https://blog.csdn.net/m0_54009761/article/details/111845009
https://blog.csdn.net/amazingdyd/article/details/59483697
https://blog.jkloozx.com/?id=211
https://blog.csdn.net/huangdj321/article/details/106371098
微信支付回调
https://www.jianshu.com/p/a6505b7e263b/
官方文档
https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_7
https://easywechat.com/docs/4.1/payment/order
https://pay.weixin.qq.com/wiki/doc/api/index.html
https://pay.weixin.qq.com/wiki/doc/api/H5.php?chapter=15_4 报错解答
$app = Factory::payment($config);
$result = $app->order->unify([
'body' => $body,
'out_trade_no' => $out_trade_no,
'total_fee' => $money,
// 'spbill_create_ip' => '123.12.12.123', // 可选,如不传该参数,SDK 将会自动获取相应 IP 地址
'notify_url' => '···', // 支付结果通知网址,如果不设置则会使用配置里的默认地址
'trade_type' => 'MWEB',
]);
$this->redirect($result["mweb_url"]);
这里使用微信返回的mweb_url参数直接跳转即可,不能直接访问该页面调起微信支付,因为http_refer为空,必须从上一个页面跳转过来才行。