我只是在学习用c编写代码,我不知道是否有人能给我指明正确的方向,或者给我一个用c编写简单http get请求的例子。
谢谢:)

最佳答案

您可以结帐libcurl。这里有一些examples。这可能很简单(从文档中获取):

#include <stdio.h>
#include <curl/curl.h>

int main(void)
{
    CURL *curl;
    CURLcode res;

    curl = curl_easy_init();
    if(curl) {
        curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
        res = curl_easy_perform(curl);
        /* always cleanup */
        curl_easy_cleanup(curl);
    }
    return 0;
}

关于c - C中的HTTP Get请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3593921/

10-10 21:27