我正在尝试将 HTTP 请求返回的数据保存到变量中。
下面的代码将自动打印请求的响应,但我需要它来保存对字符或字符串的响应。
int main(void)
{
char * result;
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "http://www.browsarity.com/");
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}
return 0;
}