mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
增加小程序 URL-Scheme
This commit is contained in:
parent
cf2037dbac
commit
f61067ce5a
3
We.php
3
We.php
@ -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
42
WeMini/Scheme.php
Normal 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);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user