1
static size_t write_callback(void *ptr, size_t size, size_t nmemb, void *userp)
{
int totalSize = size*nmemb;
if(totalSize > 1)
{
strncpy((char*)userp,(char*)ptr,totalSize);
}
return totalSize;
}
curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &this->responseData);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION ,write_callback);
如何在write_callback函數中獲取頭響應和正文?如何在POST請求後使用curl獲取HTTP響應頭和主體
我必須打印像這樣的表格。
響應頭:200 體:誤差太大。