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.GetResultAsText
Returns the result 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 result as text.
Description
Returns the result of the transaction as text.You are responsible for detecting decoding.
See also CURL.GetResultAsContainer.
Plugin version 5.2 and newer replace newlines automatically for you to match what FileMaker uses (Mac line endings).
Examples
Query result as UTF-8 text:
MBS("CURL.GetResultAsText"; $curl; "UTF-8")
Query result as Windows Ansi encoding:
MBS("CURL.GetResultAsText"; $curl; "windows")
Get result text and convert line endings for FileMaker:
MBS("Text.ReplaceNewline"; MBS("CURL.GetResultAsText"; $curl);1)
Download some text:
Set Variable [$curl; Value:MBS("CURL.New")]
Set Variable [$result; Value:MBS("CURL.SetOptionURL"; $curl; CURL Test::URL)]
Set Field [CURL Test::Result; MBS("CURL.Perform"; $curl)]
Set Field [CURL Test::Text; MBS("CURL.GetResultAsText"; $curl; "UTF8")]
Set Variable [$result; Value:MBS("CURL.Release"; $curl)]
Download a text from URL:
# start new transfer
Set Variable [$curl; Value:MBS("CURL.New")]
# set URL
Set Variable [$r; Value:MBS("CURL.SetOptionURL"; $curl; "https://www.mbsplugins.eu/")]
# run transfer
Set Variable [$ErrorCode; Value:MBS("CURL.Perform"; $curl)]
# get result as text and debug messages:
Set Variable [$TextResult; Value:MBS( "CURL.GetResultAsText"; $curl)]
Set Variable [$DebugMessages; Value:MBS( "CURL.GetDebugAsText"; $curl)]
# cleanup
Set Variable [$r; Value:MBS("CURL.Release"; $curl)]
Query webservice with JSON request:
Set Variable [$curl; Value:MBS("CURL.New")]
Set Variable [$result; Value:MBS("CURL.SetOptionURL"; $curl; "http://test.test/ws/v1/catalogo/getmodelos")]
#pass JSON for query
Set Variable [$result; Value:MBS("CURL.SetOptionPostFields"; $curl; "{\"brandId\" : \"1\", \"device\" : \"70\"}"; "UTF-8")]
Set Field [models::result; MBS("CURL.Perform"; $curl)]
Set Field [models::text; MBS("CURL.GetResultAsText"; $curl;"UTF8")]
Set Field [models::header; MBS("CURL.GetDebugAsText"; $curl)]
Set Variable [$result; Value:MBS("CURL.Release"; $curl)]
See also
- CURL.GetDebugAsText
- CURL.GetHeaderAsText
- CURL.GetResultAsData
- CURL.GetResultAsJPEG
- CURL.GetResultAsPDF
- CURL.GetResultAsPNG
- CURL.SetupOAuth
- CURL.UseSystemCertificates
- JSON.Parse
- Text.ReplaceNewline
Example Databases
- CURL/Amazon S3 Buckets
- CURL/CURL Check FileMaker Server
- CURL/CURL Download Text
- CURL/CURL Low Level Sockets
- CURL/Email/Email Client
- CURL/Email/Email Parser and Preview
- CURL/Email/List IMAP folders
- CURL/WebServices/Query IP and Country
- CURL/WebServices/Swiss Post Addresscheck V4-02-00
- CURL/WebServices/Twilio API Send SMS Json
Blog Entries
- Using Apple's Global Service Exchange web service in FileMaker
- MBS FileMaker Plugin, version 9.3pr6
- Let CURL handle cookie list
- Use root certificates included with FileMaker
- LogicalDOC Webservice
- Using Apple's Global Service Exchange web service in FileMaker
- Query geolocation in FileMaker via MBS Plugin and Google Maps API
- Using NetVerify web service with FileMaker
- Swiss Post Webservice to verify addresses
- Using CURL with Rosette web service
FileMaker Magazin
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 19th April 2020
CURL.GetResultAsPNG - CURL.GetResultLength
Feedback: Report problem or ask question.
Links
MBS Xojo PDF Plugins