I believe the answer chosen on that forum is wrong. SIMCom has TCP/IP embedded on all their devices.
We can easily type the "IP address destination" "PORT" "DATA" and expect the packet to be delivered via TCP/IP protocol NOT via IP protocol as mentioned in the answer.
I am interested in understanding how I can send POST data through SIM908. The AT command available
AT+HTTPACTION=1 not 0 (which is for get)
and AT+HTTPDATA is really really confusing and no matter how hard I try, I cannot seem to understand the meaning of both of them.
However,
If I use the sequence,
AT+ SAPBR = 1,1 (I have my gps profile already saved in sim908 with APN set to "PPWAP")
AT+HTTPPARA="URL","www.url.com/index.php"
AT+HTTPACTION=0
(now sim908 tells me how much bytes downloaded from the website through GET method)
AT+HTTPREAD=1,1000 ( read the first 1000 charators on downloaded from the website)
now this is using GET Method. I want to use POST. which SIM908 data sheet claims can be done using the command
AT+HTTPACTION=1
but when i do the same sequence using that command, I get some garbage values.
makes me think.. is there a method to download? a webpages content using POST method?