标签:alertover
众所周知,我们发送接收信息的渠道大多是Email,短信。特别是服务报警这一块,短信 虽好,但是太贵。而AlertOver很好的解决了这个问题。
AlertOver利用安装,IOS,浏览器插件来接收信息。速度快,轻量便利。
首先需要注册一个Alertover的账号 https://www.alertover.com/
然后在手机上下载APP应用
AlertOver使用:

添加组织然后邀请成员加入,在成员列表管理成员,并建立该组织下的发送源和接收组。
发送源只能通知到同一组织下的接收组和成员
source为发送源管理-发送源ID
receiver为接受组管理-接受组ID
content为通知内容
title 邮件通知标题
shell命令行发送通知:
curl -s --form-string "source=xxxxxxxx" --form-string "receiver=xxxxxxxx" --form-string "content=hello world" --form-string "title=hello" https://api.alertover.com/v1/alert
python:
import requests
requests.post(
"https://api.alertover.com/v1/alert"
data={
"source": "xxxxxxxx",
"receiver": "xxxxxxxx",
"content": "hello world",
"title": "hello"
}
)本文出自 “aolens·程超” 博客,请务必保留此出处http://aolens.blog.51cto.com/7021142/1878427
标签:alertover
原文地址:http://aolens.blog.51cto.com/7021142/1878427