views:

196

answers:

4
+1  Q: 

C++ HTTP Library

Is there a good open source library in C++ which will allow me to grab the contents of an URL (the response to a POST or a GET, like a web service's response) to a string?

+6  A: 

Try libcurl : http://curl.haxx.se/

Mads Elvheim
A: 

http://curl.haxx.se/libcurl/

google search reveals the above link - haven't tried it myself

aajkaltak
+1  A: 

You can try: libcurl

Naveen
A: 

you can use cURL with C++

Robert Greiner