我会写一个脚本或利用Chrome扩展程序自动将链接推送到我的Android。 我安装了Pushbullet很棒,但我必须使用键盘快捷键手动推送链接。 我该如何实现自动化呢?有没有办法只推送某些网址?
非常感谢!
答案 0 :(得分:2)
如果它们来自脚本,您可以轻松调用pushbullet api向您的手机发送推送:https://docs.pushbullet.com/#pushes
如果在命令行中使用curl,它将如下所示:
curl --header 'Authorization: Bearer <your_access_token_here>' -X POST https://api.pushbullet.com/v2/pushes \
--header 'Content-Type: application/json' \
--data-binary '{"type": "note", "title": "Note Title", "body": "Note Body"}'
如果你正在使用python,你可能想要使用请求库,它看起来像:
requests.post('https://api.pushbullet.com/v2/pushes',
data=json.dumps({"type": "note", "title": "Note Title", "body": "Note Body"}),
headers={'Authorization': 'Bearer <access token>', 'Content-Type': 'application/json'})
您可以在此页面上找到您的访问令牌:https://www.pushbullet.com/account