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:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
CURL.GetHeaderAsText
Returns the headers of the transaction as text.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| CURL | 2.5 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| curl | The CURL session handle. | $curl | |
| Encoding | The text encoding for result. Default is native. This function can also handle UTF-16 as well as UTF-16LE and UTF-16BE for little/big endian byte order. Possible encoding names: ANSI, ISO-8859-1, Latin1, Mac, Native, UTF-8, DOS, Hex, Base64 or Windows. More listed in the FAQ. |
"UTF-8" | Optional |
| preserveLineEndings | Whether to change line endings to CR for FileMaker. By default (0) we change the line endings to CR, so FileMaker has no trouble. Pass 1 to keep whatever line endings are there. |
0 | Optional |
Result
The headers as text.
Description
Returns the headers of the transaction as text.You are responsible for detecting decoding.
Plugin version 5.2 and newer replace newlines automatically for you to match what FileMaker uses (Mac line endings).
Examples
Get header lines:
MBS("CURL.GetHeaderAsText"; $curl)
Get file name for container from header:
Set Variable [ $name ; Value: "" ]
Set Variable [ $headers ; Value: MBS( "CURL.GetHeaderAsText"; $curl; "UTF-8") ]
Set Variable [ $headers ; Value: MBS( "List.MatchesPrefix"; $headers; "Content-Disposition: attachment; filename=") ]
If [ Length($headers) > 0 ]
Set Variable [ $name ; Value: Middle ( $headers ; 43 ; Length($headers) ) ]
End If
Set Field [ CURL Test::File ; MBS("CURL.GetResultAsContainer"; $curl; $name) ]
See also
- CURL.CreateHeaderOutputFile
- CURL.GetDebugAsText
- CURL.GetHeaderAsJSON
- CURL.GetHeaderSize
- CURL.GetResultAsContainer
- CURL.GetResultAsText
- CURL.SetDebugWithTime
- CURL.SetOptionCustomRequest
- List.MatchesPrefix
- SendMail.PrepareCURL
Example Databases
- CURL/CURL Download in Background
- CURL/CURL Download on Server
- CURL/CURL Download PDF and add preview with DynaPDF
- CURL/CURL Download Picture
- CURL/CURL Download Text
- CURL/CURL Download with Progress
- CURL/CURL Download zip file
- CURL/CURL Send Form
- CURL/Email/List IMAP folders
- CURL/WebServices/Twitter oAuth
Blog Entries
- MBS FileMaker Plugin, version 9.3pr6
- Comparing Base Elements Plugin to MBS FileMaker Plugin
- MBS FileMaker Plugin, version 5.2pr7
- MBS Filemaker Plugin, version 3.2pr3
Release notes
- Version 9.3
- Added preserveLineEndings parameter for CURL.GetDebugAsText, CURL.GetHeaderAsText, CURL.GetInputAsText and CURL.GetResultAsText function.
Created 18th August 2014, last changed 16th July 2019
CURL.GetHeaderAsJSON - CURL.GetHeaderLength
Feedback: Report problem or ask question.
Links
MBS Xojo Plugins