发送消息接口
POST
/send请注意body传参的时候Content-Type一定要设置为application/json,否则服务端没法正确识别body中的json格式。
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
token
string
必需
用户令牌,可直接加到请求地址后,如:http://www.pushplus.plus/send/{token}
title
string
消息标题
content
string
必需
具体消息内容,根据不同template支持不同格式
topic
string
可选
群组编码,不填仅发送给自己;channel为webhook时无效
template
string
发送模板
channel
string
发送渠道
webhook
string
webhook编码
callbackUrl
string
发送结果回调地址
timestamp
string
可选
毫秒时间戳。格式如:1632993318000。服务器时间戳大于此时间戳,则消息不会发送
to
string
可选
好友令牌,微信公众号渠道填写好友令牌,企业微信渠道填写企业微信用户id
pre
string
可选
预处理信息编码。仅供会员使用。需要先在个人中心中添加预处理代码。
示例
{
"token": "be8652e98bd04139a13e1bffcd6d0f71",
"title": "标题",
"content": "消息内容",
"topic": "code",
"template": "html"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
响应码
msg
string
响应说明
data
string
响应数据
示例
{
"code": 200,
"msg": "请求成功",
"data": "075074e3c17e449e9a0cb79cc6f3fc83"
}
最后修改时间: 3 个月前