From 4aa98a58a626d184d67e46b7100e8143f164a122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 28 Dec 2023 21:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3ORC=E8=AF=86=E5=88=AB?= =?UTF-8?q?=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Ocr.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/WeMini/Ocr.php b/WeMini/Ocr.php index 83c6fcb..9dab34f 100644 --- a/WeMini/Ocr.php +++ b/WeMini/Ocr.php @@ -35,7 +35,7 @@ class Ocr extends BasicWeChat public function bankcard($data) { $url = 'https://api.weixin.qq.com/cv/ocr/bankcard?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } /** @@ -48,7 +48,7 @@ class Ocr extends BasicWeChat public function businessLicense($data) { $url = 'https://api.weixin.qq.com/cv/ocr/bizlicense?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } /** @@ -61,7 +61,7 @@ class Ocr extends BasicWeChat public function driverLicense($data) { $url = 'https://api.weixin.qq.com/cv/ocr/drivinglicense?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } /** @@ -74,7 +74,7 @@ class Ocr extends BasicWeChat public function idcard($data) { $url = 'https://api.weixin.qq.com/cv/ocr/idcard?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } /** @@ -87,7 +87,7 @@ class Ocr extends BasicWeChat public function printedText($data) { $url = 'https://api.weixin.qq.com/cv/ocr/comm?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } /** @@ -100,6 +100,6 @@ class Ocr extends BasicWeChat public function vehicleLicense($data) { $url = 'https://api.weixin.qq.com/cv/ocr/driving?access_token=ACCESS_TOKEN'; - return $this->callPostApi($url, $data, true); + return $this->callPostApi($url, $data, false); } } \ No newline at end of file