From 4944cbe4884d16b77182d4631fa4a8def355af6c Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Sat, 8 Mar 2025 14:16:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81=E8=AF=86=E5=88=AB=E7=B1=BB=EF=BC=8C=E6=94=AF=E6=8C=81?= =?UTF-8?q?=20Guzzle=20=E5=AE=A2=E6=88=B7=E7=AB=AF=E5=8D=95=E4=BE=8B?= =?UTF-8?q?=E5=A4=8D=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Utils/API/Verification.php | 84 ++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 app/Utils/API/Verification.php diff --git a/app/Utils/API/Verification.php b/app/Utils/API/Verification.php new file mode 100644 index 0000000..db69657 --- /dev/null +++ b/app/Utils/API/Verification.php @@ -0,0 +1,84 @@ + [ + CURLOPT_FRESH_CONNECT => false, + CURLOPT_FORBID_REUSE => false, + ], + 'headers' => [ + 'Connection' => 'keep-alive', + ], + ]); + } + return self::$client; + } + /** + * 获取验证码图片 识别结果 + * + * @param string $image 待识别图的base64字符串 + * @return int 识别结果 -1 识别失败 + */ + public static function get_captchaImage($image) + { + $client = self::get_client(); // 创建 Guzzle 客户端 + $data = [ + "token" => self::$token, + "type" => self::$type, + "image" => $image, + ]; + // 发送 POST 请求 + $response = $client->post(self::$baseurl, [ + 'json' => $data, // 以 JSON 格式发送数据 + ]); + // 获取响应体内容 + $body = $response->getBody(); + $responseData = json_decode($body, true); // 如果返回的是 JSON 格式,解析它 + if ($responseData['code'] == 10000) { + return $responseData['data']; + } else { + Log::error("验证码识别失败: " ."code:". $responseData['code']); + return -1; + } + } +}