Http read error after http post request

I use ec200T-CN module. I tried to post data to server through USB from qnavigator tool. I got proper response from the server. Following is the at commands sent through q-navigator.
[2025-01-21 17:53:14:769_S:] AT+QHTTPURL=62,30
[2025-01-21 17:53:14:769_R:] AT+QHTTPURL=62,30
[2025-01-21 17:53:14:769_R:] CONNECT
[2025-01-21 17:53:22:572_S:] https://c0e87952-cfcd-4519-81c7-fb1f9b0a4933.mock.pstmn.io/pst

[2025-01-21 17:53:22:572_R:] OK
[2025-01-21 17:53:36:989_S:] AT+QHTTPPOST=6,30
[2025-01-21 17:53:36:989_R:] AT+QHTTPPOST=6,30

[2025-01-21 17:53:39:009_R:] CONNECT
[2025-01-21 17:53:46:566_S:] faults

[2025-01-21 17:53:46:566_R:] OK

[2025-01-21 17:53:46:975_R:] DSR:1 CTS:1 (RI:1) DCD:0

[2025-01-21 17:53:46:975_R:] +QHTTPPOST: 0,200,13

[2025-01-21 17:53:47:101_R:] DSR:1 CTS:1 (RI:0) DCD:0
[2025-01-21 17:53:59:802_S:] AT+QHTTPREAD=13
[2025-01-21 17:53:59:802_R:] AT+QHTTPREAD=13

[2025-01-21 17:53:59:802_R:] CONNECT
[2025-01-21 17:53:59:802_R:] value_success
[2025-01-21 17:53:59:811_R:] OK

[2025-01-21 17:53:59:811_R:] DSR:1 CTS:1 (RI:1) DCD:0

[2025-01-21 17:53:59:811_R:] +QHTTPREAD: 0

[2025-01-21 17:53:59:928_R:] DSR:1 CTS:1 (RI:0) DCD:0

But If I send the same commands through uart from stm32, I get success message till post command - which is +QHTTPPOST: 0,200,13. after that If I try to read - server response body - I get +cme error : HTTP(S) no GET/POST requests.
I tried giving delays between - http post and http read - didnt work.
Can somebody tell - where I might have gone wrong ?

Can you provide the corresponding log of STM32?
pls check

AT+CGPADDR
AT+QIDNSCFG=1
AT+QIDNSGIP=1,“https://c0e87952-cfcd-4519-81c7-fb1f9b0a4933.mock.pstmn.io/pst

when I send the at commands that you have suggested through - q navigator tool I get the following responses:

[2025-01-24 10:42:35:043_S:] AT+CGPADDR
[2025-01-24 10:42:35:043_R:] AT+CGPADDR

[2025-01-24 10:42:35:058_R:] +CGPADDR: 1,“100.86.243.85”

[2025-01-24 10:42:35:066_R:] OK

[2025-01-24 10:46:02:797_S:] AT+QIDNSCFG=1
[2025-01-24 10:46:02:797_R:] AT+QIDNSCFG=1

[2025-01-24 10:46:02:813_R:] +QIDNSCFG: 1,“125.22.47.102”,“203.145.160.5”

[2025-01-24 10:46:02:813_R:] OK

[2025-01-24 10:48:10:689_S:] AT+QIDNSGIP=1,“”
[2025-01-24 10:48:10:689_R:] AT+QIDNSGIP=1,“”

[2025-01-24 10:48:10:689_R:] OK

[2025-01-24 10:48:10:782_R:] DSR:1 CTS:1 (RI:1) DCD:0

[2025-01-24 10:48:10:782_R:] +QIURC: “dnsgip”,565

[2025-01-24 10:48:10:892_R:] DSR:1 CTS:1 (RI:0) DCD:0

But when I send the same through stm32 - uart - I am not getting any responses. I just get the echo message.
Thanks in advance.