增加小程序 URL-Scheme

This commit is contained in:
Anyon 2021-12-09 10:37:31 +08:00
parent cf2037dbac
commit f61067ce5a
2 changed files with 44 additions and 1 deletions

3
We.php
View File

@ -66,6 +66,7 @@ use WeChat\Exceptions\InvalidInstanceException;
* @method \WeMini\Plugs WeMiniPlugs($options = []) static 小程序插件管理
* @method \WeMini\Poi WeMiniPoi($options = []) static 小程序地址管理
* @method \WeMini\Qrcode WeMiniQrcode($options = []) static 小程序二维码管理
* @method \WeMini\Scheme WeMiniScheme($options = []) static 小程序 URL-Scheme
* @method \WeMini\Search WeMiniSearch($options = []) static 小程序搜索
* @method \WeMini\Security WeMiniSecurity($options = []) static 小程序内容安全
* @method \WeMini\Soter WeMiniSoter($options = []) static 小程序生物认证
@ -88,7 +89,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.33';
const VERSION = '1.2.34';
/**
* 静态配置

42
WeMini/Scheme.php Normal file
View File

@ -0,0 +1,42 @@
<?php
namespace WeMini;
use WeChat\Contracts\BasicWeChat;
/**
* 小程序 URL-Scheme
* Class Scheme
* @package WeMini
*/
class Scheme extends BasicWeChat
{
/**
* 创建 URL Scheme
* @param array $data
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function create($data)
{
$url = 'https://api.weixin.qq.com/wxa/generatescheme?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->callPostApi($url, $data, true);
}
/**
* 查询 URL-Scheme
* @param string $scheme
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function query($scheme)
{
$url = 'https://api.weixin.qq.com/wxa/queryscheme?access_token=ACCESS_TOKEN';
$this->registerApi($url, __FUNCTION__, func_get_args());
return $this->callPostApi($url, ['scheme' => $scheme], true);
}
}