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; + } + } +}