I am trying to post a raw text from a sim900 module for which I have set the content type already but I am unable to figure out the documentation on how to send the actualy content inside my code.
AT+CGATT=1
AT+SAPBR=3,1,CONTYPE,GPRS
AT+SAPBR=3,1,APN,internet
AT+SAPBR=1,1
AT+SAPBR=0,1
AT+HTTPTERM
AT+SAPBR=2,1
AT+HTTPINIT
AT+HTTPPARA=CID,1
AT+HTTPPARA=CONTENT, text/plain;charset=UTF-8
AT+HTTPPARA=URL,http://requestb.in/zl1ngazl
How can I send the actual POST body to the url in order for me to be able to process the data at the other end. I am able to receive queries in the url but have had no success with what to put up on the body.
Any advice would be appreciated as I have come up to a dead end on this.