Topics
All
Mac OS X
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Guides
Examples
New in version:
7.4
7.5
8.0
8.1
8.2
8.3
8.4
8.5
9.0
9.1
Statistic
CURL.SetOptionAcceptEncoding
Enables automatic decompression of HTTP downloads.
Component | Version | macOS | Windows | Server | FileMaker Cloud | FileMaker iOS SDK |
CURL | 7.5 | Yes | Yes | Yes | Yes | Yes |
Parameters
Parameter | Description | Example value |
---|---|---|
curl | The CURL session handle. | $curl |
Param | The new setting. | 1 |
Result
Returns OK or error.
Description
Enables automatic decompression of HTTP downloads.Sets the contents of the Accept-Encoding: header sent in a HTTP request, and enables decoding of a response when a Content-Encoding: header is received. Three encodings are supported: identity, meaning non-compressed, deflate which requests the server to compress its response using the zlib algorithm, and gzip which requests the gzip algorithm.
If a zero-length string is set like "", then an Accept-Encoding: header containing all built-in supported encodings is sent.
You can also opt to just include the Accept-Encoding: header in your request with CURL.SetOptionHTTPHeader but then there will be no automatic decompressing when receiving data.
This is a request, not an order; the server may or may not do it. This option must be set or else any unsolicited encoding done by the server is ignored.
Servers might respond with Content-Encoding even without getting a Accept-Encoding: in the request. Servers might respond with a different Content-Encoding than what was asked for in the request.
The Content-Length: servers send for a compressed response is supposed to indicate the length of the compressed content so when auto decoding is enabled it may not match the sum of bytes reported by the output buffer (although, sending the length of the non-compressed content is a common server mistake).
See also ACCEPT_ENCODING option in CURL manual.
Examples
Request gzip compression:
MBS( "CURL.SetOptionAcceptEncoding"; $curl; "gzip" )
Download with compression:
# Start new session
Set Variable [ $curl ; Value: MBS("CURL.New") ]
# Set URL to load (HTTP, HTTPS, FTP, FTPS, SFTP, etc.)
Set Variable [ $result ; Value: MBS("CURL.SetOptionURL"; $curl; CURL Test::URL) ]
Set Variable [ $result ; Value: MBS("CURL.SetOptionAcceptEncoding"; $curl; "gzip") ]
# RUN now
Set Field [ CURL Test::Result ; MBS("CURL.Perform"; $curl) ]
# Check result
Set Field [ CURL Test::Text ; MBS("CURL.GetResultAsText"; $curl; "UTF8") ]
Set Field [ CURL Test::debug ; MBS("CURL.GetDebugAsText"; $curl) ]
# Cleanup
Set Variable [ $result ; Value: MBS("CURL.Cleanup"; $curl) ]
See also
- CURL.Cleanup
- CURL.GetDebugAsText
- CURL.GetResultAsText
- CURL.New
- CURL.Perform
- CURL.SetOptionAcceptTimeoutMS
- CURL.SetOptionHTTPHeader
- CURL.SetOptionTransferEncoding
- CURL.SetOptionURL
Created 27th November 2017, last changed 27th November 2017
CURL.SetOptionAbstractUnixSocket - CURL.SetOptionAcceptTimeoutMS
Feedback: Report problem or ask question.
Links
MBS FileMaker tutorial videos