Pre Merge pull request !10 from yao978318542/master

This commit is contained in:
yao978318542 2023-05-07 06:11:43 +00:00 committed by Gitee
commit 9f3e143ea8
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 6 additions and 1 deletions

View File

@ -166,6 +166,9 @@ abstract class BasicWePay
]); ]);
if ($verify) { if ($verify) {
if(empty($headers)){
return json_decode($content, true);
}
$headers = []; $headers = [];
foreach (explode("\n", $header) as $line) { foreach (explode("\n", $header) as $line) {
if (stripos($line, 'Wechatpay') !== false) { if (stripos($line, 'Wechatpay') !== false) {

View File

@ -56,6 +56,8 @@ class Order extends BasicWePay
} else { } else {
// 创建预支付码 // 创建预支付码
$result = $this->doRequest('POST', $types[$type], json_encode($data, JSON_UNESCAPED_UNICODE), true); $result = $this->doRequest('POST', $types[$type], json_encode($data, JSON_UNESCAPED_UNICODE), true);
//如果是生成码的话没有prepay_id
if (empty($result['prepay_id'])) return $result;
if (empty($result['h5_url']) && empty($result['code_url']) && empty($result['prepay_id'])) { if (empty($result['h5_url']) && empty($result['code_url']) && empty($result['prepay_id'])) {
$message = isset($result['code']) ? "[ {$result['code']} ] " : ''; $message = isset($result['code']) ? "[ {$result['code']} ] " : '';
$message .= isset($result['message']) ? $result['message'] : json_encode($result, JSON_UNESCAPED_UNICODE); $message .= isset($result['message']) ? $result['message'] : json_encode($result, JSON_UNESCAPED_UNICODE);

View File

@ -38,7 +38,7 @@ class Refund extends BasicWePay
*/ */
public function create($data) public function create($data)
{ {
return $this->doRequest('POST', '/v3/ecommerce/refunds/apply', json_encode($data, JSON_UNESCAPED_UNICODE), true); return $this->doRequest('POST', '/v3/refund/domestic/refunds', json_encode($data, JSON_UNESCAPED_UNICODE), true);
} }
/** /**