微信开发者通过接口给粉丝发送消息:
URL链接:
https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN
参数:
{
‘touser‘ : openid.
‘msgtype‘ : text
‘text‘ : {
‘content‘ => message
}
}
通过这个可以封装好消息去通知用户。
时间: 2024-10-02 23:03:28
微信开发者通过接口给粉丝发送消息:
URL链接:
https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN
参数:
{
‘touser‘ : openid.
‘msgtype‘ : text
‘text‘ : {
‘content‘ => message
}
}
通过这个可以封装好消息去通知用户。