wechat-api
wechat-api copied to clipboard
什么时候能支持发送【小程序】图文链接?
微信文档:https://mp.weixin.qq.com/debug/wxadoc/dev/api/custommsg/conversation.html
客服接口-发消息 接口调用请求说明
http请求方式: POST https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN
发送【小程序】图文链接 每次可以发送一个图文链接
{
"touser": "OPENID",
"msgtype": "link",
"link": {
"title": "Happy Day",
"description": "Is Really A Happy Day",
"url": "URL",
"thumb_url": "THUMB_URL"
}
}
你用的什么版本。
我准备提一个PR新增小程序链接和小程序卡片的功能,在此之前可以用 patch 方法自己兼容一下 @w304807481