DEV Community

Discussion on: Make get request and parse JSON in C?

Collapse
 
snhilde profile image
Hilde N

I use CURL and cJSON for these issues.

You can see some examples for GET and POST requests in this parser program. You would be interested in get_weather() (and its two parser functions) and get_portfolio_value()/parse_portfolio_json() for GET requests and parsing the jsons and get_token() as an example of a POST request.

Hilde