Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 12.1   12.2   12.3   12.4   12.5   13.0   13.1   13.2   13.3   13.4    Statistic    FMM    Blog  

CURL.SetOptionNoBody

Whether to ignore the body of the download.

Component Version macOS Windows Linux Server iOS SDK
CURL 2.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "CURL.SetOptionNoBody"; curl; Value )   More

Parameters

Parameter Description Example
curl The CURL session handle. $curl
Value Whether to ignore body. 1

Result

Returns "OK" on success.

Description

Whether to ignore the body of the download.
Set to 1 tells the library to not include the body-part in the output. This is only relevant for protocols that have separate header and body parts. On HTTP(S) servers, this will make libcurl do a HEAD request.

To change request to GET, you should use CURL.SetOptionGet. Change request to POST with CURL.SetOptionPost etc.

See also NOBODY option in CURL manual.

Examples

Get only the headers:

MBS( "CURL.SetOptionNoBody"; $curl; 1 )

See also

Example Databases

Created 18th August 2014, last changed 18th August 2014


CURL.SetOptionNewFilePerms - CURL.SetOptionNoProxy

💬 Ask a question or report a problem