使用gotify发送图片

晓暮
12月9日发布

Gotify发送图片消息

gotify默认推送为纯文本消息,如果需要发送图片消息,需要使用markdown语法,发送信息格式为json
下列为python实现发送图片示例,请将notify_urltoken=后面的值替换为你的gotify服务url和真实token
import requests
resp = requests.post('notify_url/message?token=12345678', json={
    "message": "![](https://pic.lishihao.top:99/i/12/6764d790547dc.webp)",
    "priority": 2,
    "title": "图片",
    "extras": {
    "client::display": {
      "contentType": "text/markdown"
    }
  }
})
print(resp)

推送到手机的效果如下图
1734662062002.webp
其他代码发送图片见官方示例
gotify部署方式见本站文章Gotify-个人消息推送服务

© 版权声明
THE END
喜欢就支持一下吧
点赞 3 分享 赞赏
评论 抢沙发
取消
易航博客