From 5b6b09b9557213ea15f3b68e9f6d6fcfecc80b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 18 Nov 2024 22:10:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=BC=80=E5=8D=A1=E6=8F=92=E4=BB=B6=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Card.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/WeChat/Card.php b/WeChat/Card.php index 436024b..dfec1e1 100644 --- a/WeChat/Card.php +++ b/WeChat/Card.php @@ -628,4 +628,17 @@ class Card extends BasicWeChat $url = "https://api.weixin.qq.com/card/pay/getorderlist?access_token=ACCESS_TOKEN"; return $this->callPostApi($url, $data); } + + /** + * 获取开卡插件参数 + * @param array $data + * @return array + * @throws Exceptions\InvalidResponseException + * @throws Exceptions\LocalCacheException + */ + public function getActivateUrl(array $data) + { + $url = "https://api.weixin.qq.com/card/membercard/activate/geturl?access_token=ACCESS_TOKEN"; + return $this->callPostApi($url, $data); + } } \ No newline at end of file