V3退款链接和接口文档不一致

post请求如果响应失败的话没有下面的timestamp字段,直接返回微信的错误信息方便处理
This commit is contained in:
yao978318542 2023-04-27 09:52:35 +08:00
parent aede81dce3
commit 21b6758c04
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -36,7 +36,7 @@ class Refund extends BasicWePay
*/
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);
}
/**