Post request from ESP8266 to Xano database

Answered

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:

4 replies