I want to add some additional data in variable to HTTP GET using c++. When I make request using HTTP POST I do it like that:
curl_easy_setopt(curl, CURLOPT_U
For GET just append the parameters to the URL, like
GET
http://some.host.com/some/path?variable1=value1&variable2=value2
I'm sure you've seen it before!