0

如果有使用 fetch 的某个事件,我需要 mikrotik 通过 Pushbullet 向我发送通知

我找到了一些可以使用它的代码,但它向我发送了一个错误,我在网站上阅读了有关错误代码的信息,它说我的令牌无效,我试图创建多个令牌,但没有运气

/tool fetch mode=https url="https://api.pushbullet.com/api/pushes" http-method=post http-data="device_iden=&type=note&body=来自 MikroTik 设备的高优先级消息&title=RouterOS Alert" 用户=""

我希望代码发送通知,但我得到 <401 未授权> 相反

4

1 回答 1

0

Pushbullet 的正确语法:

/tool fetch mode=https url="https://api.pushbullet.com/v2/pushes" http-method=post http-data="type=note&body=some text" user="API-Token"

在特定设备上:

/tool fetch mode=https url="https://api.pushbullet.com/v2/pushes" http-method=post http-data="device_iden=<device_id>&type=note&body=some text" user="API-Token"
于 2020-07-18T18:44:08.580 回答