1
0
mirror of https://gitee.com/zoujingli/WeChatDeveloper.git synced 2025-04-06 03:58:03 +08:00

修改刷卡支付授权码查询参数

This commit is contained in:
邹景立 2021-07-13 10:07:39 +08:00
parent a4d57428ba
commit 9c01d4301a

@ -155,7 +155,7 @@ class Order extends BasicWePay
public function queryAuthCode($authCode)
{
$url = 'https://api.mch.weixin.qq.com/tools/authcodetoopenid';
return $this->callPostApi($url, ['auth_code' => $authCode]);
return $this->callPostApi($url, ['auth_code' => $authCode], false, 'MD5', false);
}
/**