1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| <?php
function queryUrl($url, $header, $postfields)
{
if (function_exists('curl_init') != 1)
throw new Exception("Please install curl plugin", 1); //请安装curl插件!
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 5);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postfields);
// curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0');
$result = curl_exec($curl);
curl_close($curl);
return $result;
}
$msg = array(
'touser' => '2817',
'toparty' => '1',
'msgtype' => 'text',
'agentid' => 1000014,
'text' => array(
'content' => '测试'
)
);
// TODO
$app_access_token = '';
$header = array('Content-Type: application/json');
print(queryUrl("https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$app_access_token", $header, json_encode($msg)));
|