QuickSander / ArduinoHttpServer

Server side minimalistic HTTP protocol implementation for the Arduino platform.
GNU General Public License v3.0
23 stars 11 forks source link

basic GET arguments support (not perfect, parsing could be better) and example sketch #23

Open openshwprojects opened 1 year ago

openshwprojects commented 1 year ago

Parsing could be improved because it may return "atest123" value when you search for "test123" but still it's better than nothing. I may or may not improve it later.

openshwprojects commented 1 year ago

Sure, I can fix the comment when I find some free time.

I will also have to add decoding of HTML escaped characters, for example space, they are not currently handled correctly.

openshwprojects commented 1 year ago

I've added some changes, also a basic GET escaped characters support: image