feat: 添加获取开卡插件参数

This commit is contained in:
邹景立 2024-11-18 22:10:27 +08:00
parent 4a624380ea
commit 5b6b09b955

View File

@ -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);
}
}