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,086
  • 2
  • 11
  • 29
  • 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
  • 152,046
  • 34
  • 225
  • 232
zebrabox
  • 5,616
  • 1
  • 26
  • 32
2

what about cpp-netlib?

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

Andrés Senac
  • 831
  • 6
  • 14