Windows參考:http://www.reibang.com/p/bdfcca29bd34
Linux參考:http://www.reibang.com/p/9118ffc4a8bb
Windows 第3步代碼如下
注意1:第一行修改自己的機(jī)器人地址
注意2:json中的url和picurl為同一個拴签,這樣點擊消息可直接看到圖片
$url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=3e87f7cf"
Invoke-WebRequest $url -Method POST -ContentType "application/json;charset=utf-8" -Body '{
"msgtype": "news",
"news": {
"articles" : [
{
"title" : "中秋節(jié)禮品領(lǐng)取",
"description" : "今年中秋節(jié)公司有豪禮相送sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"url" : "https://upload-images.jianshu.io/upload_images/10567998-424cbfbc254fd324.png?imageMogr2/auto-orient/strip|imageView2/2/w/1191/format/webp",
"picurl" : "https://upload-images.jianshu.io/upload_images/10567998-424cbfbc254fd324.png?imageMogr2/auto-orient/strip|imageView2/2/w/1191/format/webp"
}
]
}
}'
Linux 第3步代碼如下
注意1:第一行修改自己的機(jī)器人地址
注意2:json中的url和picurl為同一個纵顾,這樣點擊消息可直接看到圖片
curl 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=3e87ab1bff7cf' \
-H 'Content-Type: application/json' \
-d '{
"msgtype": "news",
"news": {
"articles" : [
{
"title" : "中秋節(jié)禮品領(lǐng)取",
"description" : "今年中秋節(jié)公司有豪禮相送sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
"url" : "https://upload-images.jianshu.io/upload_images/10567998-424cbfbc254fd324.png?imageMogr2/auto-orient/strip|imageView2/2/w/1191/format/webp",
"picurl" : "https://upload-images.jianshu.io/upload_images/10567998-424cbfbc254fd324.png?imageMogr2/auto-orient/strip|imageView2/2/w/1191/format/webp"
}
]
}
}'