I'm using Arduino UNO WIFI shield, and I have read your library Ciao (https://github.com/arduino-org/Ciao) and it's excellent, so I'm working for send datas with method post request, but I could not send my datas. this is my code:
char * method = "POST";
char * CONNECTOR = "rest";
char * SERVER_ADDR = "myserver.com";
String uri = "/public/auth_login";
String post_data = "name=Alice&age=12";
CiaoData data = Ciao.write(CONNECTOR,SERVER_ADDR, uri, method);
I know that Ciao.write receives four values, so, where I can put my post datas?
oh! please, can you help me?
Thanks, so much!