Pushbullet HTTP request -


has tried http request pushbullet? tried postman says http not supported, https allowed. got success https, have seen did http request here : https://github.com/tuanpmt/espduino/blob/master/espduino/examples/pushbullet/pushbullet.ino

can tell me how http request pushbullet? header or different api?

let me know.

we don't allow http requests security purposes. code linked uses https (or @ least port 443 https):

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

it's possible avoid using https creating proxy speaks http client , https server (in case pushbullet api server).

you state in question https worked you, might ask why don't want use it?


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

php - Symfony 2: "No route found for "GET /" - error on fresh installation -