From 88ba48606c792d34aef7db992096bca0cf932881 Mon Sep 17 00:00:00 2001 From: "X14XA\\shengli" Date: Sat, 18 Apr 2026 00:03:28 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=AF=B7=E6=B1=82=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/library/impl/SignerHttpClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/impl/SignerHttpClient.php b/src/library/impl/SignerHttpClient.php index 57b1337..551efa3 100644 --- a/src/library/impl/SignerHttpClient.php +++ b/src/library/impl/SignerHttpClient.php @@ -99,7 +99,7 @@ class SignerHttpClient implements ISigner $options['form_params'] = $requestData; try { - $result = $this->client->post('/hfpcfca/cfca/makeSign', $options); + $result = $this->client->post('/cfca/makeSign', $options); $response = Response::make($result); if(!$response->isSuccess()) { throw new SignException('签名请求失败,请检查签名服务器 ' . $response->getCode()); @@ -144,7 +144,7 @@ class SignerHttpClient implements ISigner $options['form_params'] = $requestData; try { - $resp = $this->client->post('/hfpcfca/cfca/verifySign', $options); + $resp = $this->client->post('/cfca/verifySign', $options); } catch (GuzzleException $e) { throw new ApiException('签名服务器请求失败 ' . $e->getMessage()); }