adafruit / Adafruit_WICED_Arduino

Adafruit WICED Feather Arduino BSP
https://www.adafruit.com/products/3056
27 stars 19 forks source link

HTTP does not support PUT #65

Open lennartkoopmann opened 7 years ago

lennartkoopmann commented 7 years ago

It looks like the HTTP library does not support PUT but only GET and POST.

jarzebski commented 6 years ago

I think, should support more methods like DELETE, OPTIONS, HEAD. It allow to use most RESTful APIs.

Maybe should implement more flexibile method like..

bool requestRaw(char const method, char const host, char const url, uint8_t const raw_data, uint16_t len);