Libcurl Error 35 Solution
Libcurl code 35 definition:
SSL CONNECT ERROR
I encountered this issue in the following two situations:
- SSL certificate verification. You can add corresponding headers to cancel or add verification.
1 | curl_easy_setopt(curl, CURLOPT_URL, combinePath.c_str()); |
- Carelessness. Forgot to adjust the ‘https’ server interface to ‘http’ protocol during local debugging.
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.


