Reputation: 1
I need a bare bones C++ version of some code. Using Visual Studio 2017.
Friend of mine wants to get results from a URL link using c++. He will write the .json parsers later, he then wants the code to visit the same URL domain and grab URL's that were in the same result.
I'm thinking it's got to be some sort of HTTP / HTTPS C++ GET requests maker function but I'm not sure.
looking for a possible template for this task, along with links to any necessary libraries for this project.
Upvotes: 0
Views: 858
Reputation: 7305
libcurl (http://curl.haxx.se/libcurl/) is definitely a great HTTP/HTTPS client library which has all possible bells and whistles.
But there are others like:
There are already a lot of JSON parsers out there. To name a few:
But there are more of them out there...
Up to you to make your pick based on which criteria are important to you (like: low footprint, performance, C++ API).
Upvotes: 4