Messing about with the PushBullet API

Stumbled across the PushBullet API and Android App.  Spent 10 mins and managed to send push notification to my phone using curl as follows:-

You’ll need to signup and PushBullet to gain access token.

curl -k –header “Access-Token: <your access token>” https://api.pushbullet.com/v2/pushes -X POST –header “Content-Type: application/json” –data-binary “{\”type\”: \”note\”, \”title\”:\”Note Title\”, \”body\”: \”Note Body\”}”

Leave a Reply