I'm trying to post data into a database table from my IOT device but I keep getting a 308 redirect response. Does anyone have experience with this?
Some of my code:
WiFiClient client;
HTTPClient http;
String serverPath = serverName + '/checklist_devices/';
http.begin(client, serverPath.c_str());
int httpResponseCode = http.GET();
Response: