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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -