Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams Just because you "can't figure [out] how to use libcurl with OpenSSL" doesn't change that it's the way to do this. Instead of giving up and looking for an alternative, find out what the problem is! Lightness Races in Orbit Aug 11, 2011 at 10:55 SFML can - I used it once to retrieve xml's from the EVE Online API - It worked great. You just use SendRequest . I can give you a code example if you want Seb Holzapfel Aug 11, 2011 at 11:08 Yep, well at least I think so. I did EVE requests to https://api.eveonline.com/account/characters.xml.aspx?userID=#####&apiKey=######### and it worked fine Seb Holzapfel Aug 11, 2011 at 11:21 HTTPS protocol is not supported by sf::Http. See code here: github.com/SFML/SFML/blob/master/src/SFML/Network/Http.cpp Alex Oct 25, 2016 at 22:00

Perhaps these two examples will be of help to you?

http://curl.haxx.se/libcurl/c/https.html

http://curl.haxx.se/libcurl/c/simplessl.html

no, I understand how to use libcurl functions. I can't figure out how to connect libcurl with OpenSSL to my project. When I built myself libcurl with OpelSSL, project compiled without errors, but dont run, it's just terminated without messages. Or when I tried to use already comliled libs - here what I get Country Aug 11, 2011 at 10:53 @Country: If you now want to know why your libcurl attempts did not work, then that is a new question (and probably the one you should have asked in the first place!). Lightness Races in Orbit Aug 11, 2011 at 10:56 @Country: The question was of poor quality and can be improved. That is certainly not a reason to give up on libcurl, which is the right tool for the job. Lightness Races in Orbit Aug 11, 2011 at 11:00 have the same problem with libcurl, it's just crushes. I think it's related to my x64 machine.... Dani Jul 5, 2013 at 7:34

You didn't say on which platform.

On windows there is also the WinInet-API which handles ssl transparently and uses the windows-built-in-certificates:

http://msdn.microsoft.com/en-us/library/aa384233%28VS.85%29.aspx

libcurl is imho a much friendlier API though.

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question . Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers .