我已经将v2版本的服务商支付跑起来了。
目前尝试改造v3版,依托于v2已经在传递的是sub_openid
在PayClient中将v3的普通商户的接口常量替换为服务商api接口。
改造了对应服务商的参数。
原版:
public function pay(string $type, string $appid, string $outTradeNo, string $total, string $description, string $attach, array $payer = [])
{
$totalFee = (int)bcmul($total, '100');
$data = [
'appid' => $appid,
'mchid' => $this->app['config']['v3_payment']['mchid'],
'out_trade_no' => $outTradeNo,
'attach' => $attach,
'description' => $description,
'notify_url' => $this->app['config']['v3_payment']['notify_url'],
'amount' => [
'total' => $totalFee,
'currency' => 'CNY'
],
];
改造后
public function pay(string $type, string $appid, string $outTradeNo, string $total, string $description, string $attach, array $payer = [])
{
$totalFee = (int)bcmul($total, '100');
$data = [
'sp_appid' => $appid,
'sp_mchid' => $this->app['config']['v3_payment']['mchid'],
'sub_mchid' => $this->app['config']['v3_payment']['sub_mch_id'],
'out_trade_no' => $outTradeNo,
'attach' => $attach,
'description' => $description,
'notify_url' => $this->app['config']['v3_payment']['notify_url'],
'amount' => [
'total' => $totalFee,
'currency' => 'CNY'
],
];
其中sub_mch_id已经在V3WechatPay中增加了对应的参数。
实际在小程序中调用的时候提示“请求中含有未在API文档中定义的参数”
我也一一反复对比了微信官方文档和easywechat的官方文档。感觉我这里的改造应该没有问题啊。
麻烦请各位指点一下,是哪里出的问题。