我正在使用Arduino UNO WIFI屏蔽,我已经阅读了你的库Ciao(https://github.com/arduino-org/Ciao),它非常好,所以我正在使用方法post请求发送数据,但我无法发送数据这是我的代码:

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);

我知道Ciao.write接收四个值,所以,我可以将post数据放在哪里?
哦!拜托,你能帮我吗?
谢谢,太好了!

最佳答案

char * CONNECTOR   = "rest";
char * SERVER_ADDR   = "myserver.com";

String uri = "/public/auth_login?name=Alice&age=12";

CiaoData data = Ciao.write(CONNECTOR,SERVER_ADDR, uri);

我用Ciao库来发送数据,这看起来很有用。

关于c - 带Ciao库的请愿POST -Arduino UNO WIFI,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39925689/

10-11 15:32