arduino-restclient icon indicating copy to clipboard operation
arduino-restclient copied to clipboard

Arduino RESTful HTTP Request Library

Results 14 arduino-restclient issues
Sort by recently updated
recently updated
newest added

I'm using node red to log simple data values from arduino send with this library. Everything works but the status code of the response is sometime 200, but most of...

I have encountered a rather weird error. When I compile your example GET code for an ESP-32 (Firebeetle), it compiles just fine. However, when I compile it in my code,...

Hi, I compile your code,and find that a error :undefined reference to `RestClient::begin(unsigned char*); I can't see the function of begin(unsigned char*);

On a simple client.post() i got an exception: Decoding stack results 0x40217044: _svfprintf_r at ../../../.././newlib/libc/stdio/nano-vfprintf.c line 641 0x40219f68: ethernet_output at netif/ethernet.c line 305 0x4021ffed: etharp_output_LWIP2 at core/ipv4/etharp.c line 893 0x4020d73d:...

Hi, I compile your code,and find that a error :undefined reference to `RestClient::begin(unsigned char*); I can't see the function of begin(unsigned char*);

I found that in certain conditions, the server would respond before the last CRLF was sent and then when the arduino tried put write it would receive a connection reset

While making RESTful POST request to my ParseServer (http://parseplatform.org/) I kept on getting the BAD REQUEST error as the server was not able to understand the JSON. Upon comparing the...

This is a similar approach used by https://github.com/knolleary/pubsubclient. I personally needed this feature to use https://github.com/UIPEthernet/UIPEthernet instead of the base `Ethernet` lib.

Following is my code, It fails always. `RestClient client = RestClient("http://abc.com"); int statusCode = client.get("/xyz/register.php", &response); Serial.print("Status code from server: "); Serial.println(statusCode); Serial.print("Response body from server: "); Serial.println(response);` `Status code...

I have a .htaccess protected site how can I use this library with my site?