Http status code with libcurl?

CHttpLibcurl

C Problem Overview


How do I get the HTTP status code (eg 200 or 500) after calling curl_easy_perform?

C Solutions


Solution 1 - C

http://curl.haxx.se/libcurl/c/curl_easy_getinfo.html

CURLINFO_RESPONSE_CODE

Pass a pointer to a long to receive the last received HTTP or FTP code. This option was known as CURLINFO_HTTP_CODE in libcurl 7.10.7 and earlier. This will be zero if no server response code has been received. Note that a proxy's CONNECT response should be read with CURLINFO_HTTP_CONNECTCODE and not this.

curl_code = curl_easy_perform (session);
long http_code = 0;
curl_easy_getinfo (session, CURLINFO_RESPONSE_CODE, &http_code);
if (http_code == 200 && curl_code != CURLE_ABORTED_BY_CALLBACK)
{
         //Succeeded
}
else
{
         //Failed
}

Solution 2 - C

The other answer is absolutely correct, but I would also like to add that it might not be wise to check the error code by hand, the 200 code is not the only code that signifies success.

I'd recoment using the libcurl option CURLOPT_FAILONERROR that when activated will make libcurl consider 400 and 500 -category statuses a request failure and will not return CURLE_OK from perform.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiontwkView Question on Stackoverflow
Solution 1 - CVinko VrsalovicView Answer on Stackoverflow
Solution 2 - CkralykView Answer on Stackoverflow