diff --git a/src/WxappClient.php b/src/WxappClient.php index 45ab8d5..387b4bb 100755 --- a/src/WxappClient.php +++ b/src/WxappClient.php @@ -180,6 +180,24 @@ public function getWxacodeunlimit2($path = '/', $accessToken = '') { } + /** + * 生成的小程序 scheme 码 + * + * @param array $jump_wxa + * @param string $accessToken + * @return mixed + */ + public function generatescheme(array $jump_wxa = [], string $accessToken = '') + { + return $this->http->post('wxa/generatescheme?access_token=' . $accessToken, [ + 'json' => [ + 'is_expire' => false, + 'jump_wxa' => $jump_wxa, + ] + ]); + } + + /** * @param array $params * @param string $accessToken diff --git a/src/WxappInterface.php b/src/WxappInterface.php index e948e00..03df957 100755 --- a/src/WxappInterface.php +++ b/src/WxappInterface.php @@ -97,6 +97,16 @@ public function getWxacodeunlimit(string $scene='', string $page='', string $acc public function getWxacodeunlimit2($path = '/', $accessToken = ''); + /** + * 生成的小程序 scheme 码 + * + * @param array $jump_wxa + * @param string $accessToken + * @return mixed + */ + public function generatescheme(array $jump_wxa = [], string $accessToken = ''); + + /** * 校验一张图片是否含有违法违规内容 *