mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
调整V3支付签名及Script缓存时间
This commit is contained in:
parent
946a4c40ab
commit
84f0a04aa3
@ -60,7 +60,7 @@ class Script extends BasicWeChat
|
||||
throw new InvalidResponseException('Invalid Resoponse Ticket.', '0');
|
||||
}
|
||||
$ticket = $result['ticket'];
|
||||
Tools::setCache($cache_name, $ticket, 5000);
|
||||
Tools::setCache($cache_name, $ticket, 7000);
|
||||
}
|
||||
return $ticket;
|
||||
}
|
||||
|
@ -60,10 +60,10 @@ class Order extends BasicWePay
|
||||
$prepayId = $result['prepay_id'];
|
||||
$nonceStr = Tools::createNoncestr();
|
||||
if ($type === 'app') {
|
||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId])."\n");
|
||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId, '']));
|
||||
return ['partnerId' => $this->config['mch_id'], 'prepayId' => $prepayId, 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign];
|
||||
} elseif ($type === 'jsapi') {
|
||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}"])."\n");
|
||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}", '']));
|
||||
return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$prepayId}", 'signType' => 'RSA', 'paySign' => $sign];
|
||||
} else {
|
||||
return $result;
|
||||
|
@ -14,10 +14,10 @@ try {
|
||||
'appid' => 'wx60a43dd8161666d4',
|
||||
'mchid' => $config['mch_id'],
|
||||
'description' => '商品描述',
|
||||
'out_trade_no' => date("YmdHis"),
|
||||
'out_trade_no' => (string)time(),
|
||||
'notify_url' => 'https://thinkadmin.top',
|
||||
'payer' => ['openid' => 'o38gps3vNdCqaggFfrBRCRikwlWY'],
|
||||
'amount' => ['total' => 1, 'currency' => 'CNY'],
|
||||
'amount' => ['total' => 2, 'currency' => 'CNY'],
|
||||
]);
|
||||
|
||||
echo '<pre>';
|
||||
|
Loading…
x
Reference in New Issue
Block a user