How to get argument value from ESP8266wifi library?

321 Views Asked by At

I am using ESP8266WiFi library for a NodeMCU project where the user has to fill a form and submit the data through GET. Now I want to read the Arguments such as 192.168.1.1/submit?Name=john All I need is to get the arguments after 192.168.1.1?

what method of ESP8266Wifi library would return these arguments?

1

There are 1 best solutions below

0
On
void handlePing() {
  if (server.arg("ip")== "") {
    Serial.println("No IP provided to ping");
    server.send(400, "text/plain", "Try /ping?ip=1.2.3.4");

    return;
  }

  Serial.print("Pinging ");  
  Serial.print(server.arg("ip"));

  if(pinger.Ping(server.arg("ip"))){
    Serial.println("- Success");
    server.send(200, "text/plain", "SUCCESS");
  } else {
    Serial.println("- Failed");
    server.send(200, "text/plain", "FAILURE");
  }
}

server.on("/ping", handlePing);