gpt4 book ai didi

c - 带有 libcurl 的 HTTP 状态代码?

转载 作者:太空狗 更新时间:2023-10-29 16:15:21 24 4
gpt4 key购买 nike

如何在调用 curl_easy_perform 后获取 HTTP 状态代码(例如 200 或 500)?

最佳答案

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

CURLINFO_RESPONSE_CODEPass a pointer to a long to receive the last received HTTP or FTP code. Thisoption 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
}

关于c - 带有 libcurl 的 HTTP 状态代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/290996/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com