Maison > Questions et réponses > le corps du texte
PHP中文网2017-04-11 10:46:02
请问楼主是要发送什么信息呢?如果是单纯的文本信息,推荐使用"客服接口-发消息",如果是通知类的,题主可以使用"微信模板信息接口".这两个接口都可以在知道对方的openid的情况下进行推送信息
PHP中文网2017-04-11 10:46:02
使用微信企业号
http://qydev.weixin.qq.com/wiki/index.php?title=%E5%8F%91%E9%80%81%E6%8E%A5%E5%8F%A3%E8%AF%B4%E6%98%8E
#!/bin/bash
#SCRIPT_NAME:weixin.sh
#zxc337
#email:zhangxiongcai337@gamil.com
gettoken() {
ID='xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
SECRET='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
URL="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$ID&corpsecret=$SECRET"
Gtoken=$(/usr/bin/curl -s -G $URL | awk -F\" '{print $4}')
}
gettoken
AppID=3
PartyID=2
UserID="$1"
Title="$2"
Msg="$3"
text() {
printf '{\n'
printf '\t"touser": "'"$UserID"\"",\n"
printf '\t"toparty": "'"$PartyID"\"",\n"
printf '\t"msgtype": "text",\n'
printf '\t"agentid": "'" $AppID "\"",\n"
printf '\t"text": {\n'
printf '\t\t"content": "'"$Msg"\""\n"
printf '\t},\n'
printf '\t"safe":"0"\n'
printf '}\n'
}
msg_url="https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$Gtoken"
/usr/bin/curl --data-ascii "$(text)" $msg_url
当然如果是服务号也可以使用模板消息接口
http://mp.weixin.qq.com/wiki/17/304c1885ea66dbedf7dc170d84999a9d.html