自动将 link 推送到我的 phone 的最佳方法是什么?
What's the best way to automatically push a link to my phone?
我会编写脚本或利用 Chrome 扩展来自动将链接推送到我的 Android。
我安装了 Pushbullet,这很棒,但我必须使用键盘快捷键手动推送链接。
我该如何自动化呢?有没有办法只推送某些网址?
非常感谢!
如果它们来自脚本,您可以很容易地调用 pushbullet api 向您的 phone 发送推送: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
我会编写脚本或利用 Chrome 扩展来自动将链接推送到我的 Android。 我安装了 Pushbullet,这很棒,但我必须使用键盘快捷键手动推送链接。 我该如何自动化呢?有没有办法只推送某些网址?
非常感谢!
如果它们来自脚本,您可以很容易地调用 pushbullet api 向您的 phone 发送推送: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