Does cURL NOBODY actually fetch the body?

前端 未结 3 2071
暖寄归人
暖寄归人 2020-12-20 06:40

I\'m not sure if this function in CURL just strips the response body out but still load it fully. Is that true? I don\'t want to waste bandwidth, I just want the headers.

3条回答
  •  萌比男神i
    2020-12-20 06:49

    CURLOPT_NOBODY will send a HEAD request to web server. The server should respond with just the HTTP headers and no body content.

    http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html

    The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response.

提交回复
热议问题