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

How to mention the complete URL of the php file to call GET/POST request?

Open romuye123 opened this issue 9 years ago • 0 comments
trafficstars

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 from server: 0 Response body from server:

romuye123 avatar Jun 30 '16 06:06 romuye123