Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

status code -2 not able to get correct response #101

Open
Manojkumar0308 opened this issue Jul 25, 2024 · 12 comments · Fixed by #102
Open

status code -2 not able to get correct response #101

Manojkumar0308 opened this issue Jul 25, 2024 · 12 comments · Fixed by #102
Labels
help wanted Extra attention is needed

Comments

@Manojkumar0308
Copy link

I got this error of status code -2 with your https_get_7600.ino code Compile error gone which comes yesterday but I just simply copied your code and run and i got this I am using A7672S Gsm module with ESP32 Wroom chip
Output---->

Modem Name: INCORPORATED A7672S-LASC
16:02:26.819 -> [1001] Modem Info: Manufacturer: INCORPORATED Model: A7672S-LASC Revision: A7672M6_V1.11.1 IMEI: 864180054656835 +GCAP: +CGSM,+FCLASS,+DS
16:02:26.859 -> [1016] Waiting for network...
16:02:26.859 -> [1027] Network connected
16:02:26.859 -> [1027] Connecting to
16:02:26.897 -> [1073] GPRS status: connected
16:02:26.897 -> [1080] CCID: 8991000921182727403F
16:02:26.930 -> [1085] IMEI: 864180054656835
16:02:26.930 -> [1090] IMSI: 405540465244694
16:02:26.930 -> [1096] Operator: 40554
16:02:26.930 -> [1101] Network Mode: 8
16:02:26.930 -> [1108] Local IP: 100.89.151.57
16:02:26.930 -> [1113] Signal quality: 19
16:02:26.967 -> [1125] Connecting to vsh.pp.ua
16:02:26.967 -> Making GET request securely...
16:02:29.971 -> [4114] ### Unhandled: +CIPSEND: 0,286,286
16:03:01.112 -> Status code: -2
16:03:01.112 -> Response:
16:03:01.202 -> [35345] ### Unhandled: +CIPCLOSE: 0,0
16:03:07.158 -> [41358] ### Unhandled: +NETOPEN: 0
16:03:07.158 ->
16:03:07.158 -> OK
16:03:12.127 -> [41358] GPRS disconnected

Copy link

The following fields are missing: Description, Steps to Reproduce, Expected Behavior, Actual Behavior, Environment, IDE. Please update the issue with this information.

@Manojkumar0308 Manojkumar0308 changed the title status code -2 status code -2 not able to get correct response Jul 25, 2024
@RobertByrnes
Copy link
Collaborator

HI @Manojkumar0308 Generally, -2 reflects something occurring at the transport layer - the one level down from this. So the TinyGSM transport. -2 often reflects some sort of timeout - i.e. flaky connection.

Are you in Arduino IDE or PlatformIO? Be good to see you code and also some debug level serial output.

@RobertByrnes RobertByrnes added help wanted Extra attention is needed and removed lacking information labels Jul 26, 2024
@Manojkumar0308
Copy link
Author

Manojkumar0308 commented Jul 26, 2024 via email

@Manojkumar0308
Copy link
Author

Manojkumar0308 commented Jul 27, 2024

HI @Manojkumar0308 Generally, -2 reflects something occurring at the transport layer - the one level down from this. So the TinyGSM transport. -2 often reflects some sort of timeout - i.e. flaky connection.

Are you in Arduino IDE or PlatformIO? Be good to see you code and also some debug level serial output.
[20421] ### Unhandled: AT+CRESET

15:03:39.784 -> [3495] Connecting to
15:03:39.866 -> [3541] GPRS status: connected
15:03:39.866 -> [3548] CCID: 8991000921182727403F
15:03:39.866 -> [3553] IMEI: 864180054656835
15:03:39.866 -> [3558] IMSI: 405540465244694
15:03:39.866 -> [3564] Operator: 40554
15:03:39.866 -> [3569] Network Mode: 8
15:03:39.866 -> [3576] Local IP: 100.87.86.78
15:03:39.904 -> [3582] Signal quality: 19
15:03:39.904 -> [3594] Connecting to vsh.pp.ua
15:03:39.904 -> Making GET request securely...
15:03:53.178 -> [16854] ### Unhandled: +CIPCLOSE: 0,0
15:04:24.150 -> Status code: -2
15:04:24.150 -> Response:
15:04:30.160 -> [53873] ### Unhandled: +NETOPEN: 0
15:04:30.161 ->
15:04:30.161 -> OK
15:04:35.150 -> [53873] GPRS disconnected

Whats wrong with this example https_7600.ino why i am getting this I am using this module https://github.com/Vajravegha/VVM501_ESP32_4GLTE_MODULE/blob/main/Datasheets/VVM501%20ESP32%204G%20LTE%20MODULE.pdf

@RobertByrnes
Copy link
Collaborator

@Manojkumar0308 Looks like these:

15:03:39.904 -> Making GET request securely...
15:03:53.178 -> [16854] ### Unhandled: +CIPCLOSE: 0,0
15:04:24.150 -> Status code: -2
15:04:24.150 -> Response:
15:04:30.160 -> [53873] ### Unhandled: +NETOPEN: 0

are coming from the TinyGSM not the SSLClient.

How is your client set up? Need to see your code.

@Manojkumar0308
Copy link
Author

Manojkumar0308 commented Jul 29, 2024

#define TINY_GSM_MODEM_SIM7600 // SIM7600 AT instruction is compatible with A7670
#define SerialAT Serial1
#define SerialMon Serial
#define TINY_GSM_USE_GPRS true
#include <TinyGsmClient.h>
#include <ArduinoHttpClient.h>
#include "SSLClient.h"
#include "ssl_web.h"
#define RXD2 27 //VVM501 MODULE RXD INTERNALLY CONNECTED
#define TXD2 26 //VVM501 MODULE TXD INTERNALLY CONNECTED
#define powerPin 2 ////VVM501 MODULE ESP32 PIN D4 CONNECTED TO POWER PIN OF A7670C CHIPSET, INTERNALLY CONNECTED

char a, b;

const char apn[] = ""; //APN automatically detects for 4G SIM, NO NEED TO ENTER, KEEP IT BLANK
const char server[] = "vsh.pp.ua";
const char resource[] = "/TinyGSM/logo.txt";
const int port = 443;

#ifdef DUMP_AT_COMMANDS
#include <StreamDebugger.h>
StreamDebugger debugger(SerialAT, SerialMon);
TinyGsm modem(debugger);
#else
TinyGsm modem(SerialAT);
#endif
TinyGsmClient base_client(modem);
SSLClient secure_layer(&base_client);
HttpClient client = HttpClient(secure_layer, server, port);

void setup()
{
Serial.begin(115200);

pinMode(powerPin, OUTPUT);
digitalWrite(powerPin, LOW);
delay(100);
digitalWrite(powerPin, HIGH);
delay(1000);
digitalWrite(powerPin, LOW);

Serial.println("\nconfiguring VVM501 Module. Kindly wait");

delay(10000);

SerialAT.begin(115200, SERIAL_8N1, RXD2, TXD2);

// Restart takes quite some time
// To skip it, call init() instead of restart()
DBG("Initializing modem...");
if (!modem.init()) {
DBG("Failed to restart modem, delaying 10s and retrying");
return;
}
// Restart takes quite some time
// To skip it, call init() instead of restart()
DBG("Initializing modem...");
if (!modem.restart()) {
DBG("Failed to restart modem, delaying 10s and retrying");
return;
}

String name = modem.getModemName();
DBG("Modem Name:", name);

String modemInfo = modem.getModemInfo();
DBG("Modem Info:", modemInfo);

Serial.println("Waiting for network...");
if (!modem.waitForNetwork()) {
Serial.println(" fail");
delay(10000);
return;
}
Serial.println(" success");

if (modem.isNetworkConnected()) {
Serial.println("Network connected");
}

// GPRS connection parameters are usually set after network registration
Serial.print(F("Connecting to "));
Serial.print(apn);
if (!modem.gprsConnect(apn)) {
Serial.println(" fail");
delay(10000);
return;
}
Serial.println(" success");

if (modem.isGprsConnected()) {
Serial.println("LTE module connected");
}

//Add CA Certificate
secure_layer.setCACert(root_ca);

}
void loop() {

    DBG("Connecting to ", server);
    // Make a HTTPS GET request:
    Serial.println("Making GET request securely...");
    client.get(resource);
    int status_code = client.responseStatusCode();
    String response = client.responseBody();
    
    Serial.print("Status code: ");
    Serial.println(status_code);
    Serial.print("Response: ");
    Serial.println(response);

    client.stop();        

}

14:30:06.975 -> Connecting to success
14:30:09.056 -> LTE module connected
14:30:09.056 -> Making GET request securely...
14:30:40.639 -> Status code: -2
14:30:40.639 -> Response:
14:30:40.639 -> Making GET request securely...
14:31:13.768 -> Status code: -2
14:31:13.768 -> Response:
14:31:13.844 -> Making GET request securely...
14:31:45.013 -> Status code: -2
14:31:45.013 -> Response:
14:31:45.373 -> Making GET request securely...
14:32:16.601 -> Status code: -2
14:32:16.601 -> Response:
14:32:17.615 -> Making GET request securely...

@Manojkumar0308
Copy link
Author

@Manojkumar0308 Looks like these:

15:03:39.904 -> Making GET request securely...
15:03:53.178 -> [16854] ### Unhandled: +CIPCLOSE: 0,0
15:04:24.150 -> Status code: -2
15:04:24.150 -> Response:
15:04:30.160 -> [53873] ### Unhandled: +NETOPEN: 0

are coming from the TinyGSM not the SSLClient.

How is your client set up? Need to see your code.

check my code

@RobertByrnes
Copy link
Collaborator

-2 is coming from HttpClient library. As a timeout as in a lack of response on that endpoint. You should check you cert. You are setting it with root_ca but I don't see the include? is this in ssl_web.h?

Other thing I would check is Serial.print() the server url and resource just before making the GET request. You can also capture and output the return value of the GET request itself. Have a look at the HttpClient code for what to expect for success and fail.

@Manojkumar0308
Copy link
Author

-2 is coming from HttpClient library. As a timeout as in a lack of response on that endpoint. You should check you cert. You are setting it with root_ca but I don't see the include? is this in ssl_web.h?

Other thing I would check is Serial.print() the server url and resource just before making the GET request. You can also capture and output the return value of the GET request itself. Have a look at the HttpClient code for what to expect for success and fail.

//CA Certificate for www.howsmyssl.com (valid until 12-03-2027)
const char root_ca[] PROGMEM =
"-----BEGIN CERTIFICATE-----\n"
"MIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBP\n"
"MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy\n"
"Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa\n"
"Fw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF\n"
"bmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK\n"
"AoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFL\n"
"YlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a\n"
"/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4\n"
"FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KR\n"
"mudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3\n"
"DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGG\n"
"MB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/\n"
"AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5\n"
"tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG\n"
"Fmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYD\n"
"VR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0B\n"
"AQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIo\n"
"zwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfd\n"
"u6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p9\n"
"1n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0\n"
"GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh\n"
"1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZ\n"
"QjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N\n"
"4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyz\n"
"rsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2Ei\n"
"RmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLx\n"
"KPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA54=\n"
"-----END CERTIFICATE-----";

The certificate is also correct i just copied your code its not a problem with httpclient i guess its fail to set certificate use any library including ArduinoHttpClient library still i am getting the same. I am using ESP 32 -WROOM chip with A7672S simcom module

@RobertByrnes
Copy link
Collaborator

RobertByrnes commented Jul 29, 2024

Okay I have just visited https://vsh.pp.ua/TinyGSM/logo.txt and got the current cert direct from there:

const char root_ca[] PROGMEM =
"-----BEGIN CERTIFICATE-----\n"
"MIIDrDCCAzKgAwIBAgISA0E1OqsFacxPlesosguHQchAMAoGCCqGSM49BAMDMDIx\n"
"CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF\n"
"NTAeFw0yNDA2MjkxMDE2MzVaFw0yNDA5MjcxMDE2MzRaMBQxEjAQBgNVBAMTCXZz\n"
"aC5wcC51YTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFQS4s3BahgzL0kMSlcn\n"
"sd6YacXTH1mAu+bemjYQCUaML9ae5y1Bmqop0703GipllP9YwMXhckUeWD4lXg4q\n"
"Q1ajggJEMIICQDAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYBBQUHAwEG\n"
"CCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFITZnaeHoqIsWozAVrkr\n"
"+uoDPP74MB8GA1UdIwQYMBaAFJ8rX888IU+dBLftKyzExnCL0tcNMFUGCCsGAQUF\n"
"BwEBBEkwRzAhBggrBgEFBQcwAYYVaHR0cDovL2U1Lm8ubGVuY3Iub3JnMCIGCCsG\n"
"AQUFBzAChhZodHRwOi8vZTUuaS5sZW5jci5vcmcvME4GA1UdEQRHMEWCDmtodGMu\n"
"dnNoLnBwLnVhggtsLnZzaC5wcC51YYIMcXIudnNoLnBwLnVhggl2c2gucHAudWGC\n"
"DXd3dy52c2gucHAudWEwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEDBgorBgEEAdZ5\n"
"AgQCBIH0BIHxAO8AdQAZmBBxCfDWUi4wgNKeP2S7g24ozPkPUo7u385KPxa0ygAA\n"
"AZBjthNHAAAEAwBGMEQCIBybCTv2ElV1Lh6Gl/Js+ITHFPV1Z8SK3HkoKhOF9W0r\n"
"AiA6Go1u2kAV6i5XEs6TdR9Seu698LXueFHkxfhMC5py7gB2AO7N0GTV2xrOxVy3\n"
"nbTNE6Iyh0Z8vOzew1FIWUZxH7WbAAABkGO2E1IAAAQDAEcwRQIhAJAVX/K0o7MT\n"
"t8tfe3IavYKdIdMeaSV+/nunKmNRSzjTAiBczdAoqnqLv+Btb5HFHZc6IscMuX7T\n"
"bapXofm45XytYjAKBggqhkjOPQQDAwNoADBlAjBZxJdkF6POxGiY0rUbcIJypOzI\n"
"EepAgEsyrYnT0td6jO3bdHGH+EfsEN1HnLpnLT8CMQCz0W1E+HwS56FSQiqPMQR6\n"
"cYj1x3rD00xq+BpQIHPeCpXesIp4sHlAMmN3HK5DZac=\n"
"-----END CERTIFICATE-----";

try this one instead and see how you get on?

@RobertByrnes
Copy link
Collaborator

RobertByrnes commented Jul 30, 2024

@Manojkumar0308 I have modified the sketch you copied to allow for my modem being sim800l not sim7600 - my output will be different to yours but basically it works using the the actual latest ISRG Root X1 certificate:

Here is my output:

rst:0x5 (DEEPSLEEP_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:1448
load:0x40078000,len:14844
ho 0 tail 12 room 4
load:0x40080400,len:4
load:0x40080404,len:3356
entry 0x4008059c
Initializing modem...
Modem Name: SIMCOM_Ltd SIMCOM_SIM800L
Modem Info: SIM800 R14.18
Waiting for network...Network connected
Connecting to: giffgaff.com
CCID: 8944110068768898509f
IMEI: 862749051467586
IMSI: 234107596187242
Operator: O2
Network Mode: 0
Local IP: 10.147.235.68
Signal quality: 23
Failed to retrieve IP address
IP Address for www.google.com is 216.239.38.120
Connecting to vsh.pp.ua
Making GET request securely...
Status code: 200
Response: 
  _____            _____  _____  _____
    |  | |\ | \_/ |  ___ |_____ |  |  |
    |  | | \|  |  |_____| _____||  |  |


GPRS disconnected
Poweroff.

and here the is correct cert:

const char root_ca[] PROGMEM =
"-----BEGIN CERTIFICATE-----\n"
"MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw\n"
"TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh\n"
"cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4\n"
"WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu\n"
"ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY\n"
"MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc\n"
"h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+\n"
"0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U\n"
"A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW\n"
"T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH\n"
"B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC\n"
"B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv\n"
"KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn\n"
"OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn\n"
"jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw\n"
"qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI\n"
"rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV\n"
"HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq\n"
"hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL\n"
"ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ\n"
"3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK\n"
"NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5\n"
"ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur\n"
"TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC\n"
"jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc\n"
"oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq\n"
"4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA\n"
"mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d\n"
"emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc=\n"
"-----END CERTIFICATE-----";

@Manojkumar0308
Copy link
Author

Manojkumar0308 commented Jul 30, 2024 via email

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants