只需要一个接口,就可以把信息推送到各种主流消息平台(邮箱、微信、discord、telegram、飞书群、钉钉群、企业微信群或者自定义Webhook地址)
与「网页更新提醒」插件共享账号和权益
GET https://courier.toptopn.com/api/v1/cui/notify/push?uuid=xxx&title=xxx&url=xxx&uids=xxx&emails=xxx&webhooks=xxx&text=xxx&html=xxx
POST https://courier.toptopn.com/api/v1/cui/notify/push
{ uuid: 'xxx', // 必填,用户唯一ID,登录后获取 title: 'xxx', // 必填,消息标题 url: 'xxx', // 可选,消息源地址 text: 'xxx', // 可选,消息摘要内容 html: 'xxx', // 可选,消息详情富文本内容,text、html至少有一个 uids: 'xxx', // 可选,微信UID列表,多个用,隔开 emails: 'xxx', // 可选,邮箱列表,多个用,隔开 webhooks: 'xxx' // 可选,webhook地址列表,多个用,隔开,uids、emails、webhooks至少有一个 }