如何使用 php 发送微信消息?获取微信公众平台的 access token;生成包含要发送信息的 json 请求体;设置请求头,包括 content-type 和 authorization;使用 curl 库向微信公众平台发送 http post 请求。
如何在 PHP 中使用微信开发发送消息
使用 PHP 发送微信消息的步骤:
-
获取微信公众平台的 Access Token
- 向微信公众平台发送请求,获取服务器端 HTTPS 接口的 Access Token。
-
生成请求体
- 创建一个包含要发送信息的 JSON 请求体。
-
设置请求头
- 设置请求头,包括 Content-Type 和 Authorization。
-
发送 HTTP POST 请求
- 使用 PHP 的 cURL 库向微信公众平台发送 HTTP POST 请求。
详细步骤:
1. 获取微信公众平台的 Access Token
// 微信公众平台的 AppID $appid = 'YOUR_APPID'; // 微信公众平台的 AppSecret $appsecret = 'YOUR_APPSECRET'; $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$appsecret"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); $result = json_decode($response, true); $access_token = $result['access_token'];
登录后复制
2. 生成请求体
$data = array( 'touser' => 'OPENID', 'msgtype' => 'text', 'text' => array( 'content' => 'Hello, world!' ) ); $json_data = json_encode($data);
登录后复制
3. 设置请求头
$headers = array( 'Content-Type: application/json', 'Authorization: Bearer ' . $access_token );
登录后复制
4. 发送 HTTP POST 请求
$url = "https://api.weixin.qq.com/cgi-bin/message/custom/send"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch);
登录后复制
以上就是微信开发教php如何发送消息的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:牧草,转转请注明出处:https://www.dingdanghao.com/article/679655.html