Skip to content

自定义更新通知推送

阿克苏 edited this page Jan 16, 2024 · 7 revisions

参数说明

  • title: 订阅主题
  • shareUrl: 订阅地址
  • toParentId: 转存目录ID(V2.9.5+)
  • toFileId: 转存文件ID
  • toFileName: 转存文件名称
  • shareName: 分享文件名称
  • size: 文件大小
  • width: 视频宽
  • height: 视频高
  • duration: 时长
  • thumbnail: 缩略图
  • createdAt: 上传时间
  • updatedAt: 修改时间
  • downloadDir: 下载目录(V2.9.5+)
  • now: 当前时间
  • msg: 消息(提醒内容)

json格式自由定义,以上参数只起到填充作用

发送内容样例1:

{
    "title": "{{.title}}",
    "shareUrl": "{{.shareUrl}}",
    "toParentId": "{{.toParentId}}",
    "toFileId": "{{.toFileId}}",
    "toFileName": "{{.toFileName}}",
    "shareName": "{{.shareName}}",
    "size": "{{.size}}",
    "width": "{{.width}}",
    "height": "{{.height}}",
    "duration": "{{.duration}}",
    "createdAt": "{{.createdAt}}",
    "updatedAt": "{{.updatedAt}}",
    "downloadDir": "{{.downloadDir}}"
    "msg": "{{.msg}}",
    "now": "{{.now}}"
}

发送内容样例2:

{
    "code": 200,
    "msg": "{{.msg}}",
    "data": {
        "title": "{{.title}}",
        "shareUrl": "{{.shareUrl}}",
        "toParentId": "{{.toParentId}}",
        "toFileId": "{{.toFileId}}",
        "toFileName": "{{.toFileName}}",
        "shareName": "{{.shareName}}",
        "size": "{{.size}}",
        "width": "{{.width}}",
        "height": "{{.height}}",
        "duration": "{{.duration}}",
        "createdAt": "{{.createdAt}}",
        "updatedAt": "{{.updatedAt}}",
        "downloadDir": "{{.downloadDir}}"
        "now": "{{.now}}"
    }
}
Clone this wiki locally