I couldn't help but notice, that all requests to the ESP board are done with GET requests using query parameters. This is ok for fetching settings or requesting the stream, but any request which actually updates settings on the camera should be in my opinion a least POST or PUT request.
Is there any reason - e.g. saving resources/firmware size - not to use POST/PUT ?
That code was inherited from the original ESP-WHO app. I took a look and the http server library does support POST and PUT requests. Should be a fairly easy fix.
I couldn't help but notice, that all requests to the ESP board are done with GET requests using query parameters. This is ok for fetching settings or requesting the stream, but any request which actually updates settings on the camera should be in my opinion a least POST or PUT request.
Is there any reason - e.g. saving resources/firmware size - not to use POST/PUT ?