HTTP Content-Type

Thank you WizIO,

Finally i set content-type as application/json using below method…

TEST URL: http://iot.hardikpokar.in/fold/devicereg
TEST PAYLOAD: {“id”:123,“USER”:1}

1)AT+QICSGP=1
2)AT+QIACT=1
3)AT+QIACT?
4)AT+QHTTPCFG=“contextid”,1
5)AT+QHTTPCFG=“requestheader”,1

6)AT+QHTTPURL=41,80
Connect
http://iot.hardikpokar.in/fold/devicereg
OK

7)AT+QHTTPPOST=135,80,80
Connect
POST /fold/devicereg HTTP/1.1
Host: iot.hardikpokar.in
Content-Type: application/json
Accept: /
Content-Length: 19
//Don’t miss this line
{“id”:123,“USER”:1}

OK
8)AT+QHTTPREAD=80

status:success

Thank you,
Hardik