I am using an Arduino UNO WiFi R2 and the library <ArduinoHttpClient.h>. On this one I am making a POST request, which is taking about 5 seconds to respond. Obviously the POST request should take time, however if I send the request from Postman, the response is fast.
Does anyone have any idea how to make the response on the Arduino faster?
Additionally, is it possible that while the POST request is responding, other functions can be executed inside the code? Something asynchronous or using threads?