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'; 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'; return $this->callPostApi($url, $data, true); } }