From 649bda174cfb7536ff9299e94b5f9c62ece8c903 Mon Sep 17 00:00:00 2001 From: pkkgu <910111100@qq.com> Date: Wed, 27 Sep 2023 13:07:15 +0000 Subject: [PATCH] =?UTF-8?q?update=20WeChat/Media.php.=20=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E4=B8=B4=E6=97=B6=E5=92=8C=E6=B0=B8=E4=B9=85=E7=B4=A0=E6=9D=90?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E5=8F=AF=E4=BB=A5=E7=9B=B4=E6=8E=A5=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E7=BB=84=E8=A3=85=E5=90=8E=E7=9A=84=E7=B4=A0=E6=9D=90?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E3=80=82(=E6=96=B9=E4=BE=BF=E5=B0=86?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E6=8F=90=E4=BA=A4=E7=BB=99=E7=AC=AC=E4=B8=89?= =?UTF-8?q?=E6=96=B9=E5=A4=84=E7=90=86=E9=99=84=E4=BB=B6=EF=BC=8C=E5=B7=B2?= =?UTF-8?q?=E7=9F=A5=E4=B8=83=E7=89=9B=E5=92=8C=E8=AE=AF=E9=A3=9E=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E7=9B=B4=E6=8E=A5=E5=A4=84=E7=90=86=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E7=9A=84=E7=B4=A0=E6=9D=90=E9=93=BE=E6=8E=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: pkkgu <910111100@qq.com> --- WeChat/Media.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/WeChat/Media.php b/WeChat/Media.php index d8b6a14..e437a5a 100644 --- a/WeChat/Media.php +++ b/WeChat/Media.php @@ -57,6 +57,7 @@ class Media extends BasicWeChat { $url = "https://api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id={$media_id}"; $this->registerApi($url, __FUNCTION__, func_get_args()); + if($outType=='url') return $url; $result = Tools::get($url); if (is_array($json = json_decode($result, true))) { if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) { @@ -144,6 +145,7 @@ class Media extends BasicWeChat { $url = "https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN"; $this->registerApi($url, __FUNCTION__, func_get_args()); + if($outType=='url') return $url; $result = Tools::post($url, ['media_id' => $media_id]); if (is_array($json = json_decode($result, true))) { if (!$this->isTry && isset($json['errcode']) && in_array($json['errcode'], ['40014', '40001', '41001', '42001'])) {