I want to send HTTP parameters using POST method through SIM908 GPRS. Here is and example of what I want to send:
POST /path/... HTTP/1.1
User-Agent: SIMCOM_MODULE
Host: website_name
Content-Type: application/josn; charset=utf-8
Content-Length: Length_num
Accept-Language: en-us
Connection: Keep-Alive
Requst_Body
I have visited this answer: Posting to php server using SIM900 GPRS with AT commands for using POST method to send data but this includes just the request body. What about the request parameters (headers)?
Is there any method to send them through HTTP or should I send them using TCP packet and how can I do it?