Does Arduino have a http library, that can parse an in coming GET or POST request, and provide us the data, as in the esp8266 library? Not to compare, but something user friendly helps us concentrate more on us working on the actual problem than breaking head over string parsing logic.
Just for reference esp web server class has classes like object.args(), object.argName(), object.arg().
I think, I did a reasonable search to find such class, but I could not find one. Almost all examples assume, the arduino to act as a web client, and not as server.
yes yes, I got it. I read the code and found my mistake in my sketch.
I had declared and defined a function with return type as String, but I never returned anything from the function, resulting in no compilation error, but a run time error.