Quectel m95 https get request error (http socket connect error)

Hi there, I’m working with quectel m95-R gsm Module and failing on https get request to the https server, need valuable tips so i can get out from this error. I’m little confused on certificate which i acquire it from server for server authentication.
These are my test AT commands:

AT+QSECWRITE=“RAM:ca_cert.pem”,4576,100
Response:
CONNECT

Response:
+QSECWRITE: 4576,490c

OK

AT+QIFGCNT=0
Response:
OK

AT+QICSGP=1,“JAZZ”
Response:
OK

AT+QIREGAPP
Response:
OK

AT+QIACT
Response:
OK

AT+QILOCIP
Response:
10.177.11.176

AT+QSSLCFG=“sslversion”,1,0
Response:
OK

AT+QSSLCFG=“ciphersuite”,1,“0X0035”
Response:
OK

AT+QSSLCFG=“seclevel”,1,1
Response:
OK

AT+QSSLCFG=“cacert”,1,“RAM:ca_cert.pem”
Response:
OK

AT+QSSLCFG=“ignorertctime”,1
Response:
OK

AT+QSSLCFG=“https”,1
Response:
OK

AT+QSSLCFG=“httpsctxi”,1
Response:
OK

AT+QHTTPURL=39,60
Response:
CONNECT

Response:
OK

AT+QHTTPGET=60
Response:
+CME ERROR: http socket connect error

AT+QIDEACT
Response:
DEACT OK

SSL version : 3 , Signature Algorithm
ECDSA with SHA-256

Hi
Or you’re missing a “clientcert” and a “clientkey”

AT+QSSLCFG=“sslversion”,1,4 //Configure SSL version.
OK
AT+QSSLCFG=“seclevel”,1,2 //Set the SSL verify level as 1, which means to upload
OK server root CA certificate, client certificate and client private
key by AT+QSECWRITE.
AT+QSSLCFG=“ciphersuite”,1,“0XFFFF” //Configure the cipher suite.
OK
AT+QSSLCFG=“cacert”,1,“RAM:ca_cert.pem”
OK
AT+QSSLCFG=“clientcert”,1,“RAM:client_cert.pem”
OK
AT+QSSLCFG=“clientkey”,1,“RAM:client_key.pem”
OK
AT+QSSLCFG=“ignorertctime”,1 //Ignore the RTC time.
OK
//Step 3: Enable HTTPS function and configure SSL context index for HTTPS.
AT+QSSLCFG=“https”,1 //Enable HTTPS function.
OK
AT+QSSLCFG=“httpsctxi”,1 //Configure SSL context index as 1.
OK
AT+QHTTPURL=34,60 //Set the URL.
CONNECT
……….
//For example, input 34 bytes: https://124.74.41.170:5008/1K.html.
OK
AT+QHTTPGET=60 //Send HTTPS GET request.
OK
AT+QHTTPREAD=30 //Read the response of HTTPS server.
CONNECT
……… //Output the response data of HTTPS server to UART port.
OK
AT+QIDEACT
DEACT OK