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.SetOptionVerbose
Whether to store log messages.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| CURL | 2.5 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| curl | The CURL session handle. | $curl |
| Value | 0 to disable or 1 to enable | 1 |
Result
Returns "OK" on success.
Description
Whether to store log messages.Set the parameter to 1 to get curl to display a lot of verbose information about its operations.
Very useful protocol debugging and understanding. You can get the debug messages with CURL.GetDebugAsText.
Since version 5.2 of our plugin, this is on by default.
See CURL.SetDebugWithData, CURL.SetDebugWithProgress and CURL.SetDebugWithTime to include data/time in the debug log.
See also VERBOSE option in CURL manual.
Examples
Set verbose mode:
Set Variable [ $result ; Wert: MBS("CURL.SetOptionVerbose"; $curl; 1) ]
Download with debug log with full details:
Set Variable [$curl; Value:MBS("CURL.New")]
Set Variable [$result; Value:MBS("CURL.CreateDebugOutputFile"; $curl; "/tmp/curl.log")]
Set Variable [$result; Value:MBS("CURL.SetOptionURL"; $curl; "http://www.monkeybreadsoftware.de/images/mbs.jpg")]
Set Variable [$result; Value:MBS("CURL.SetDebugWithTime"; $curl; 1)]
Set Variable [$result; Value:MBS("CURL.SetDebugWithProgress"; $curl; 1)]
Set Field [CURL Test::Result; MBS("CURL.Perform"; $curl)]
Set Field [CURL Test::Image; MBS("CURL.GetResultAsJPEG"; $curl)]
Set Field [CURL Test::debug; MBS("CURL.GetDebugAsText"; $curl)]
Set Variable [$result; Value:MBS("CURL.Release"; $curl)]
See also
- CURL.SetOptionCookieJar
- CURL.SetOptionInterface
- CURL.SetOptionNoProxy
- CURL.SetOptionPassword
- CURL.SetOptionPreProxy
- CURL.SetOptionQuote
- CURL.SetOptionReferer
- CURL.SetOptionResolve
- CURL.SetOptionURL
- CURL.SetOptionUserName
Example Databases
- CURL/CURL Check FileMaker Server
- CURL/CURL Download on Server
- CURL/CURL Send Form
- CURL/FTP/CURL FTP Directory Listing
- CURL/FTP/CURL FTP Upload File
- CURL/FTP/CURL FTP Upload from file with Progress
- CURL/FTP/CURL FTP Upload
- CURL/WebServices/AdobeSign WebService
- CURL/WebServices/Magento2 REST API
- CURL/WebServices/Twitter oAuth
Blog Entries
- Upload email to Sent folder via IMAP
- Using NetVerify web service with FileMaker
- Using CURL with Rosette web service
- Translate PHP script with CURL to FileMaker Script
- CURL Tutorial for Filemaker with MBS Plugin
Created 18th August 2014, last changed 19th April 2020
CURL.SetOptionUserName - CURL.SetOptionWildCardMatch
Feedback: Report problem or ask question.
Links
MBS Xojo PDF Plugins