我想用Pushbullet
将推送从我的手机发送到应用程序(然后将显示它)。此应用程序是用 Python 编写的服务。
实时流的基本接收工作:
import websocket
ws = websocket.create_connection("wss://stream.pushbullet.com/websocket/MYKEY")
while True:
result = ws.recv()
print"Received '%s'" % result
将某些内容推送到“所有设备”时,我得到了预期的输出:
Received '{"type": "nop"}'
Received '{"type": "nop"}'
Received '{"type": "tickle", "subtype": "push"}'
Received '{"type": "nop"}'
Received '{"type": "tickle", "subtype": "push"}'
我收到的不包含任何数据,类型是' tickle
',文档说
当您收到一条痒痒消息时,这意味着该类型子类型的资源已更改。
并查询服务器上的详细信息。那里提到的调用 ( GET https://api.pushbullet.com/v2/pushes?modified_after=1399008037.849
) 没有经过身份验证,那么如何实际进行调用呢?
或者,我想为我的应用程序创建一个“设备”并将推送直接发送给它。但是我在文档中找不到任何地方可以描述模拟设备的过程?