C語言是一門強大的編程語言,它可以通過POST請求提交JSON數據格式。
#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, "http://example.com"); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "{\"name\":\"John Doe\",\"age\":25}"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, "Content-Type: application/json"); res = curl_easy_perform(curl); if(res != CURLE_OK) fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); curl_easy_cleanup(curl); } return 0; }
以上代碼使用curl庫進行POST請求,并將JSON數據格式作為參數提交給服務器端,Content-Type設置為application/json。
上一篇python 循環索引值
下一篇python 非的表示