在C++中處理POST JSON請求的重定向問題,可以使用libcurl庫
sudo apt-get install libcurl4-openssl-dev
main.cpp
的文件,并添加以下代碼:#include<iostream>
#include<string>
#include <curl/curl.h>
size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp)
{
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
int main()
{
CURL* curl = curl_easy_init();
if (curl)
{
// 設(shè)置URL和POST數(shù)據(jù)
std::string url = "https://example.com/api";
std::string postData = R"({"key": "value"})";
// 設(shè)置請求頭
struct curl_slist* headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json");
// 設(shè)置回調(diào)函數(shù)
std::string response;
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
// 設(shè)置URL
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
// 設(shè)置POST數(shù)據(jù)
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, postData.c_str());
// 設(shè)置請求頭
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
// 設(shè)置自動跟隨重定向
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
// 執(zhí)行請求
CURLcode res = curl_easy_perform(curl);
// 檢查錯誤
if (res != CURLE_OK)
{
std::cerr << "Error: "<< curl_easy_strerror(res)<< std::endl;
}
else
{
std::cout << "Response: "<< response<< std::endl;
}
// 清理資源
curl_easy_cleanup(curl);
curl_slist_free_all(headers);
}
return 0;
}
g++ main.cpp -o main -lcurl
./main
這個示例將發(fā)送一個包含JSON數(shù)據(jù)的POST請求到指定的URL,并自動處理重定向。如果請求成功,它將輸出響應(yīng)內(nèi)容。如果遇到錯誤,它將輸出錯誤信息。