postJson('cgi-bin/message/subscribe/send', [ 'template_id' => $data['template_id'], // 所需下发的订阅模板id 'touser' => $data['openid'], // 接收者(用户)的 openid 'page' => $data['page'], // 点击模板卡片后的跳转页面,仅限本小程序内的页面。支持带参数,(示例index?foo=bar)。该字段不填则模板无跳转。 'data' => $data['data'], ]); } /** * 添加模板消息 * @param array $data * @return array|Collection|object|ResponseInterface|string * @throws GuzzleException * @throws InvalidConfigException */ public function addTemplate(array $data) { $api = CoreWeappService::appApiClient(); return $api->postJson('wxaapi/newtmpl/addtemplate', [ 'tid' => $data['tid'], 'kidList' => $data['kid_list'], 'sceneDesc' => $data['scene_desc'], ]); } /** * 删除 * @param array $data * @return array|Collection|object|ResponseInterface|string * @throws GuzzleException * @throws InvalidConfigException */ public function delete(array $data) { $api = CoreWeappService::appApiClient(); return $api->postJson('wxaapi/newtmpl/deltemplate', [ 'priTmplId' => $data['template_id'], ]); } /** * 获取 * @return void */ public function get() { } }