-1

Has anyone tried HTTP request with Pushbullet? I tried with postman but it says HTTP not supported, HTTPS allowed. I got success with HTTPS, but I have seen someone did HTTP request here : https://github.com/tuanpmt/espduino/blob/master/espduino/examples/pushbullet/pushbullet.ino

Can anyone tell me how to do an HTTP request for pushbullet? any extra header or different API?

let me know.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Zim
  • 43
  • 2
  • 10

1 Answers1

0

We don't allow HTTP requests for security purposes. The code you linked to uses HTTPS (or at least port 443 which will definitely be HTTPS):

rest.begin("api.pushbullet.com", 443, true)

It's possible for you to avoid using HTTPS by creating a proxy that speaks HTTP to the client and HTTPS to the server (in this case the pushbullet api server).

You state in your question that HTTPS worked for you, might I ask why you don't want to use it?

Chris Pushbullet
  • 1,039
  • 9
  • 10