这篇文章介绍的内容是关于小程序模板消息(php) ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
public function send_msg($user_id){ //发送小程序模板消息
$appid = 'wx6de91caa27fe';
$secret = '35603e3370c8f2e3cb1bb8884d';
$user_info = m('users')->field('openid,form_id')->where(['user_id'=>$user_id])->find(); //form_id 由小程序前端提供
$access_token = $this->get_access_token($appid,$secret);
$url = "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=$access_token";
$data=array('touser'=>$user_info['openid'], //发给谁
'template_id'=>'vfo4nx-exszimg09stavtnfuarfk-zvn-aflmn9fj6s', //订单发货提醒
'page'=> 'pages/index/index',
'form_id'=>$user_info['form_id'],
'data'=>array(
'keyword1'=>array(
'value'=>'12341234', // 订单号
'color'=>'#173177'
),
'keyword2'=>array(
'value'=>'12点30分', //发货时间
'color'=>'#173177'
),
'keyword3'=>array(
'value'=>'口红', //产品名
'color'=>'#173177'
),
'keyword4'=>array(
'value'=>'11111111111',
'color'=>'#173177'
)
)
);
$data = json_encode($data);
$ch = curl_init();
curl_setopt($ch, curlopt_url, "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=".$access_token);
curl_setopt($ch, curlopt_customrequest, "post");
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
curl_setopt($ch, curlopt_useragent, 'mozilla/5.0 (compatible; msie 5.01; windows nt 5.0)');
curl_setopt($ch, curlopt_followlocation, 1);
curl_setopt($ch, curlopt_autoreferer, 1);
curl_setopt($ch, curlopt_postfields, $data);
curl_setopt($ch, curlopt_returntransfer, true);
$tmpinfo = curl_exec($ch);
if (curl_errno($ch)) {
return curl_error($ch);
}
curl_close($ch);
print_r($tmpinfo);
}
public function get_access_token(
secret) //获取token
{
$data = json_decode(file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret")) ;
return $data->access_token;
}
public function send_msg($user_id){ //发送小程序模板消息
$appid = 'wx6de91caa27fe';
$secret = '35603e3370c8f2e3cb1bb8884d';
$user_info = m('users')->field('openid,form_id')->where(['user_id'=>$user_id])->find(); //form_id 由小程序前端提供
$access_token = $this->get_access_token($appid,$secret);
$url = "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=$access_token";
$data=array('touser'=>$user_info['openid'], //发给谁
'template_id'=>'vfo4nx-exszimg09stavtnfuarfk-zvn-aflmn9fj6s', //订单发货提醒
'page'=> 'pages/index/index',
'form_id'=>$user_info['form_id'],
'data'=>array(
'keyword1'=>array(
'value'=>'12341234', // 订单号
'color'=>'#173177'
),
'keyword2'=>array(
'value'=>'12点30分', //发货时间
'color'=>'#173177'
),
'keyword3'=>array(
'value'=>'口红', //产品名
'color'=>'#173177'
),
'keyword4'=>array(
'value'=>'11111111111',
'color'=>'#173177'
)
)
);
$data = json_encode($data);
$ch = curl_init();
curl_setopt($ch, curlopt_url, "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=".$access_token);
curl_setopt($ch, curlopt_customrequest, "post");
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
curl_setopt($ch, curlopt_useragent, 'mozilla/5.0 (compatible; msie 5.01; windows nt 5.0)');
curl_setopt($ch, curlopt_followlocation, 1);
curl_setopt($ch, curlopt_autoreferer, 1);
curl_setopt($ch, curlopt_postfields, $data);
curl_setopt($ch, curlopt_returntransfer, true);
$tmpinfo = curl_exec($ch);
if (curl_errno($ch)) {
return curl_error($ch);
}
curl_close($ch);
print_r($tmpinfo);
}
public function get_access_token(
secret) //获取token
{
$data = json_decode(file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret")) ;
return $data->access_token;
}
相关推荐:
微信小程序实现与后台php交互
小程序的promise简化回调
以上就是小程序模板消息(php) 的详细内容。