首页 > 代码库 > AlertOver最好用的实时消息工具

AlertOver最好用的实时消息工具

AlertOver:

众所周知,我们发送接收信息的渠道大多是Email,短信。特别是服务报警这一块,短信 虽好,但是太贵。而AlertOver很好的解决了这个问题。

AlertOver利用安装,IOS,浏览器插件来接收信息。速度快,轻量便利。

 

注册AlertOver:

首先需要注册一个Alertover的账号 https://www.alertover.com/

然后在手机上下载APP应用

AlertOver使用:

1,添加组织技术分享

2,以组织为单位管理成员,发送源,接收组

添加组织然后邀请成员加入,在成员列表管理成员,并建立该组织下的发送源和接收组。

发送源只能通知到同一组织下的接收组和成员

技术分享

技术分享

技术分享


3,通过API来调用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=http://www.mamicode.com/{"source": "xxxxxxxx",
        "receiver": "xxxxxxxx",
        "content": "hello world",
        "title": "hello"
        }
)

    技术分享

    技术分享




本文出自 “aolens·程超” 博客,请务必保留此出处http://aolens.blog.51cto.com/7021142/1878427

AlertOver最好用的实时消息工具