Reputation: 23078
I am making a windows program that
Please recommend a good C++ library that provides HTTP client functionality as well as a newb-friendly environment (easy debugging) for developing it. Visual C++, minGW?
I am a newb with programming and a first-time poster here. Google confused me but it led me to libCURL. Pardon me for unclear language or scope.
Upvotes: 0
Views: 384
Reputation: 61331
Look up WinInet. It's the Windows API's native HTTP client, with POST capability among others. Libcurl is portable, but it's not technically a part of Windows, you have to link/ship it with the software.
Upvotes: 2