#include <Arduino.h>
#include "HttpClient.h"
const char* ssid = "Wokwi-GUEST";
const char* password = "";
const char* url = "https://wokwidemo.free.beeceptor.com/api/users";
HttpClient httpClient(ssid, password);
void setup() {
Serial.begin(9600);
httpClient.postData(url, "Test Center", "65cef46f0b3aeb76fd38dbfb", "Paper Bags", "5kg", true);
}
void loop() {
// Not used in this example
}