Gotify发送图片消息
gotify默认推送为纯文本消息,如果需要发送图片消息,需要使用markdown语法,发送信息格式为json
下列为python实现发送图片示例,请将notify_url
和token=
后面的值替换为你的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)
推送到手机的效果如下图
其他代码发送图片见官方示例
gotify部署方式见本站文章Gotify-个人消息推送服务