Wireless Stick Lite (V3) https connection failed

Hello,

I was using older Wireless Stick Lite (V2) to send data to server using https. But with the new chip Wireless Stick Lite (V3) it is not working. May someone please give an working example for V3 model or maybe just point out my mistake. Here is the that was working on V2 but not on V3.

  HTTPClient http;

  String serverPath = "https://google.com";
  String host ="www.google.com";
  http.begin(serverPath.c_str(),google_root_ca);
  http.addHeader("Host", host.c_str());
  http.addHeader("Content-Type", "application/x-www-form-urlencoded");
       
  //int httpResponseCode = http.POST(post_data);           
  int httpResponseCode = http.GET();
       
   
  if (httpResponseCode>0) {
    Serial.print("HTTP Response code: ");
    Serial.println(httpResponseCode);
    String payload = http.getString();      Serial.println(payload);  } 
   else {
    Serial.print("Error code: ");
    Serial.println(httpResponseCode);
    //lora_send_msg(httpResponseCode);
  }
  // Free resources
  http.end();

On Wireless Stick Lite (V2) I was getting 200 code status on Wireless Stick Lite (V3) I am getting -1 error code.

Thanks in advance