在C語言中,我們經(jīng)常需要通過后臺(tái)發(fā)送一個(gè)HTTP請求獲取數(shù)據(jù),這時(shí)候我們可以使用libcurl庫來實(shí)現(xiàn)。libcurl是一個(gè)非常強(qiáng)大的開源C語言網(wǎng)絡(luò)傳輸庫,能夠支持多種協(xié)議和多種傳輸方式,并支持HTTP、HTTPS、FTP、SMTP等多種協(xié)議。
下面我們就通過一個(gè)例子來介紹如何使用libcurl庫發(fā)送一個(gè)HTTP GET請求并回收J(rèn)SON數(shù)據(jù):
#include <stdio.h> #include <string.h> #include <curl/curl.h> struct MemoryStruct { char *memory; size_t size; }; static size_t WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp) { size_t realsize = size * nmemb; struct MemoryStruct *mem = (struct MemoryStruct *)userp; mem->memory = realloc(mem->memory, mem->size + realsize + 1); if (mem->memory == NULL) { printf("not enough memory (realloc returned NULL)\n"); return 0; } memcpy(&(mem->memory[mem->size]), contents, realsize); mem->size += realsize; mem->memory[mem->size] = 0; return realsize; } int main(void) { CURL *curl_handle; CURLcode res; struct MemoryStruct chunk; chunk.memory = malloc(1); chunk.size = 0; curl_global_init(CURL_GLOBAL_ALL); curl_handle = curl_easy_init(); curl_easy_setopt(curl_handle, CURLOPT_URL, "https://jsonplaceholder.typicode.com/posts/1"); curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, WriteMemoryCallback); curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk); res = curl_easy_perform(curl_handle); if (res != CURLE_OK) { fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); } else { printf("%lu bytes retrieved\n", (unsigned long)chunk.size); printf("%s", chunk.memory); } curl_easy_cleanup(curl_handle); free(chunk.memory); curl_global_cleanup(); return 0; }
在上面的代碼中,我們首先定義一個(gè)結(jié)構(gòu)體`MemoryStruct`,用來存儲(chǔ)獲取的json數(shù)據(jù)。然后我們實(shí)現(xiàn)了一個(gè)回調(diào)函數(shù)`WriteMemoryCallback`,這個(gè)函數(shù)的作用是將獲取到的數(shù)據(jù)存儲(chǔ)到我們定義的結(jié)構(gòu)體中。然后我們使用Curl庫中的相關(guān)函數(shù),設(shè)置了請求的url、寫入數(shù)據(jù)的回調(diào)函數(shù)等參數(shù),并使用`curl_easy_perform`函數(shù)來執(zhí)行請求。
最終我們通過判斷返回值,并輸出獲取到的json數(shù)據(jù),來確保請求是否成功。這樣我們就可以使用C語言發(fā)送HTTP請求并獲取JSON數(shù)據(jù)了。