This is my first ever experience with photon, webhook, pushbullet.
I created webhook using API token from pushbullet. Then using particle-photon i publish events. In the particle dashboard I even see hook-sent/myEventName and hook-response/myEventName/0 with the response data echoing back original data in the “title” member. However on the push bullet’s URL for my channel i do not see any data.
I am not sure if I am missing a thing to specify association between myEventName to the push bullet’s channel name, somewhere in the push bullet’s world?
This is a webhook.json I used to create a webhook
{
"eventName": "temperature",
"url": "https://api.pushbullet.com/v2/pushes",
"requestType": "POST",
"headers": {
"Authorization": "Bearer MY-API-TOKEN",
"Content-Type": "application/json"
},
"json": {
"type": "note",
"title": "{{PARTICLE_EVENT_VALUE}}",
"body": ""
},
"mydevices": true
}