From f85672621437e3f6295da64bce04d0a4ea8b92b2 Mon Sep 17 00:00:00 2001 From: "X14XA\\shengli" Date: Mon, 20 Apr 2026 18:00:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E5=90=8D=E8=B7=AF=E5=BE=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= 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 551efa3..277ae2e 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('/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('/cfca/verifySign', $options); + $resp = $this->client->post('cfca/verifySign', $options); } catch (GuzzleException $e) { throw new ApiException('签名服务器请求失败 ' . $e->getMessage()); }