1

Possible Duplicate:
What C++ library should I use to implement a HTTP client?

What library I can use for sending POST and GET requests in C++

Community
  • 1
  • 1
Antigluk
  • 1,176
  • 2
  • 11
  • 30
  • 1
    See: http://stackoverflow.com/questions/822581/what-c-library-should-i-use-to-implement-a-http-client – Shog9 Feb 14 '10 at 17:01

3 Answers3

5

libcurl

http://curl.haxx.se/

It works and is really simple.

2

You can use libcurl or its c++ wrapper curlpp

Shog9
  • 156,901
  • 35
  • 231
  • 235
zebrabox
  • 5,694
  • 1
  • 28
  • 32
2

what about cpp-netlib?

http://sourceforge.net/projects/cpp-netlib/

Andrés Senac
  • 841
  • 6
  • 14