使用 Pushbullet 推送 link 并在网络浏览器中自动打开它

Push a link with Pushbullet and have it automatically opened in web browser

我正在尝试使用 Pushbullet 从 Android 应用程序发送 links,它应该会在网络浏览器中自动打开。

他们的 API 声明当您要发送 link 时必须使用 "type": "link"。我已经试过了,但是 link 不会在浏览器中自动打开,您必须点击通知才能打开它。

命令如下:

curl --header 'Authorization: Bearer token' -X POST https://api.pushbullet.com/v2/pushes --header 'Content-Type: application/json' --data-binary '{"type": "link", "title": "Note Title", "body": "Note Body", "url": "http://google.com"}'

我想要的与 Pushbullet 在 Android 上为 Chrome 提供的行为完全相同。您只需使用 "A New Push" 操作共享一个页面,它就会在网络浏览器中自动打开。当前 API 是否可能?

如果 Pushbullet 应用程序直接发送到该设备而不仅仅是用户,它们只会自动打开 links。因此,要让 link 自动打开,您应该设置 "device_iden": "<device iden for your browser>"。您可以通过转至 https://www.pushbullet.com/ 并单击左侧的设备来找到设备 ID。 url 将更改为 https://www.pushbullet.com/?device_iden=<device iden>,您可以在请求中使用该设备 ID。