-->
Page 1 of 1

AT command for POST and GET request

PostPosted: Fri Dec 23, 2016 1:23 pm
by ilker
Dear Friends,
I am developing ESP8266 server application using AT commands. TCP client is browser in My case. I checked ESP AT instrudtion set, but I coudnt find any AT command to recieve post and get form data which will be sent from browser. Is there any method o achieve this?

Re: AT command for POST and GET request

PostPosted: Sun Jan 01, 2017 4:59 pm
by jeffas
The AT commands work at a lower level than that. They can handle sending and receiving of data (i.e. transport layer), but what you are asking for is HTTP parsing. That is application layer. There are probably libraries available to do that, but you need to use them in your own code once you have got the raw data.