The Salesforce API allows gzip compression on either request entities or response entities (or both). It's not to hard to support this by using the necessary Content-Encoding and Accept-Encoding headers and then passing the json marshalling through compress/gzip functions.
The only method affected is ForceApi.request, I think.
The Salesforce API allows gzip compression on either request entities or response entities (or both). It's not to hard to support this by using the necessary
Content-EncodingandAccept-Encodingheaders and then passing the json marshalling throughcompress/gzipfunctions.The only method affected is
ForceApi.request, I think.