0

我会编写一个脚本或利用 Chrome 扩展程序自动将链接推送到我的 Android。我安装了 Pushbullet,这很棒,但我必须使用键盘快捷键手动推送链接。我该如何自动化呢?有没有办法只推送某些 URL?

非常感谢!

4

1 回答 1

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 库,它看起来像:

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

于 2015-04-22T23:05:55.993 回答