diff --git a/We.php b/We.php index a4ffc59..813cc16 100644 --- a/We.php +++ b/We.php @@ -44,9 +44,15 @@ use WeChat\Exceptions\InvalidInstanceException; * * ----- WeMini ----- * @method \WeMini\Crypt WeMiniCrypt($options = []) static 小程序数据加密处理 + * @method \WeMini\Delivery WeMiniDelivery($options = []) static 小程序即时配送 + * @method \WeMini\Image WeMiniImage($options = []) static 小程序图像处理 + * @method \WeMini\Logistics WeMiniLogistics($options = []) static 小程序物流助手 + * @method \WeMini\Message WeMiniMessage($options = []) static 小程序动态消息 + * @method \WeMini\Ocr WeMiniOcr($options = []) static 小程序ORC服务 * @method \WeMini\Plugs WeMiniPlugs($options = []) static 小程序插件管理 * @method \WeMini\Poi WeMiniPoi($options = []) static 小程序地址管理 * @method \WeMini\Qrcode WeMiniQrcode($options = []) static 小程序二维码管理 + * @method \WeMini\Security WeMiniSecurity($options = []) static 小程序内容安全 * @method \WeMini\Template WeMiniTemplate($options = []) static 小程序模板消息支持 * @method \WeMini\Total WeMiniTotal($options = []) static 小程序数据接口 * diff --git a/WeMini/Crypt.php b/WeMini/Crypt.php index a458d7b..38fe360 100644 --- a/WeMini/Crypt.php +++ b/WeMini/Crypt.php @@ -78,7 +78,7 @@ class Crypt extends BasicWeChat } $userinfo = $this->decode($iv, $result['session_key'], $encryptedData); if (empty($userinfo)) { - throw new InvalidDecryptException('用户信息解析失败', 403); + throw new InvalidDecryptException('用户信息解析失败', 403); } return array_merge($result, $userinfo); } diff --git a/WeMini/Delivery.php b/WeMini/Delivery.php index ce7bcb4..6d6d6af 100644 --- a/WeMini/Delivery.php +++ b/WeMini/Delivery.php @@ -17,7 +17,7 @@ namespace WeMini; use WeChat\Contracts\BasicWeChat; /** - * 小程序退时配送 + * 小程序即时配送 * Class Delivery * @package WeMini */ @@ -178,32 +178,4 @@ class Delivery extends BasicWeChat return $this->callPostApi($url, $data, true); } - /** - * 动态消息,创建被分享动态消息的 activity_id - * @param array $data - * @return array - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - */ - public function createActivityId($data) - { - $url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/activityid/create?access_token=ACCESS_TOKEN'; - $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, $data, true); - } - - /** - * 动态消息,修改被分享的动态消息 - * @param array $data - * @return array - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - */ - public function setUpdatableMsg($data) - { - $url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/updatablemsg/send?access_token=ACCESS_TOKEN'; - $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, $data, true); - } - } \ No newline at end of file diff --git a/WeMini/Img.php b/WeMini/Image.php similarity index 98% rename from WeMini/Img.php rename to WeMini/Image.php index 5fc01c2..16db575 100644 --- a/WeMini/Img.php +++ b/WeMini/Image.php @@ -19,10 +19,10 @@ use WeChat\Exceptions\InvalidResponseException; /** * 小程序图像处理 - * Class Img + * Class Image * @package WeMini */ -class Img extends BasicWeChat +class Image extends BasicWeChat { /** diff --git a/WeMini/Message.php b/WeMini/Message.php new file mode 100644 index 0000000..fdb06a4 --- /dev/null +++ b/WeMini/Message.php @@ -0,0 +1,67 @@ +registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, $data, true); + } + + /** + * 动态消息,修改被分享的动态消息 + * @param array $data + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function setUpdatableMsg($data) + { + $url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/updatablemsg/send?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, $data, true); + } + + /** + * 下发小程序和公众号统一的服务消息 + * @param array $data + * @return array + * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException + */ + public function uniformSend($data) + { + $url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token=ACCESS_TOKEN'; + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->callPostApi($url, $data, true); + } +} \ No newline at end of file diff --git a/WeMini/Qrcode.php b/WeMini/Qrcode.php index cacaf1f..4c238b3 100644 --- a/WeMini/Qrcode.php +++ b/WeMini/Qrcode.php @@ -108,5 +108,5 @@ class Qrcode extends BasicWeChat } return is_null($outType) ? $result : $outType($result); } - + } \ No newline at end of file diff --git a/WeMini/Template.php b/WeMini/Template.php index 730f8c3..516d407 100644 --- a/WeMini/Template.php +++ b/WeMini/Template.php @@ -107,20 +107,4 @@ class Template extends BasicWeChat return $this->callPostApi($url, $data, true); } - /** - * 下发小程序和公众号统一的服务消息 - * @param array $data - * @return array - * @throws \WeChat\Exceptions\InvalidResponseException - * @throws \WeChat\Exceptions\LocalCacheException - */ - public function uniformSend($data) - { - $url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token=ACCESS_TOKEN'; - $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, $data, true); - } - - - } \ No newline at end of file diff --git a/WeMini/crypt/wxBizDataCrypt.php b/WeMini/crypt/wxBizDataCrypt.php index 43769f2..d969638 100644 --- a/WeMini/crypt/wxBizDataCrypt.php +++ b/WeMini/crypt/wxBizDataCrypt.php @@ -1,12 +1,10 @@