$v){ $temp_data[$k] = ['value' => $v]; } if (!empty($first)) $data[ 'first' ] = $first; if (!empty($remark)) $data[ 'remark' ] = $remark; $api = CoreWechatService::appApiClient(); $param = [ 'touser' => $openid, 'template_id' => $template_id, 'url' => $url, 'miniprogram' => $miniprogram, 'data' => $temp_data, ]; if(!empty($client_msg_id)){ $param['client_msg_id'] = $client_msg_id; } return $api->postJson('cgi-bin/message/template/send', $param); } /** * 添加模板消息 * @param array $data * @return array|Collection|object|ResponseInterface|string * @throws GuzzleException * @throws InvalidConfigException */ public function addTemplate(array $data) { $api = CoreWechatService::appApiClient(); return $api->postJson('cgi-bin/template/api_add_template', [ 'template_id_short' => $data[ 'shortId' ], 'keyword_name_list' => $data[ 'keyword_name_list' ] ]); } /** * 删除 * @param array $data * @return array|Collection|object|ResponseInterface|string * @throws GuzzleException * @throws InvalidConfigException */ public function delete(array $data) { $api = CoreWechatService::appApiClient(); return $api->postJson('cgi-bin/template/del_private_template', [ 'template_id' => $data[ 'templateId' ], ]); } /** * 获取 * @return void */ public function get() { } }