I'm trying to use Pushbullet to send links from Android app which should automatically open in web browser.
Their API states that you have to use "type": "link"
when you're going to send a link. I've tried this, but the link isn't automatically opened in the browser, you have to click the notification to open it.
Here's the command:
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"}'
What I want is exactly the same behavior as Pushbullet offers for Chrome on Android. You just share a page using "A New Push" action and it's automatically opened in web browser. Is it possible with current API?