Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
CURL.FormAddKeyValue
Add a section to a multipart/formdata HTTP POST.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
CURL | 2.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "CURL.FormAddKeyValue"; curl; Name; Value { ; ContentType; ContentHeaders } ) More
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
curl | The CURL session handle. | $curl | |
Name | The name of the form field. | "city" | |
Value | The value for the form field. | "Nickenich" | |
ContentType | Available in MBS FileMaker Plugin 10.3 or newer. The mime content type for this field. |
"text/html" | Optional |
ContentHeaders | Available in MBS FileMaker Plugin 10.3 or newer. List of headers to include. |
"Content-Id: 12345" | Optional |
Result
Returns "OK" or error code.
Description
Add a section to a multipart/formdata HTTP POST.This adds simply form field with a given name and value.
For text encoding UTF-8 is used here.
Please call CURL.FormFinish after you added all your fields and before you call CURL.Perform.
Examples
Sets city in a form
MBS( "CURL.FormAddKeyValue"; $curl; "City"; "Nickenich" )
Build form:
MBS( "CURL.FormAddKeyValue"; $curl; "login"; "testuser" )
MBS( "CURL.FormAddKeyValue"; $curl; "password"; "xxx" )
MBS( "CURL.FormFinish"; $curl )
See also
- CURL.FormAddKeyContainerContentType
- CURL.FormAddKeyFile
- CURL.FormAddKeyText
- CURL.FormAddKeyValueContentType
- CURL.FormFinish
- CURL.GetFormData
- CURL.Perform
- CURL.SetOptionPassword
- CURL.SetOptionPostFields
Release notes
- Version 10.3
- Added ContentType and ContentHeaders parameter for CURL.FormAddKeyContainer, CURL.FormAddKeyFile, CURL.FormAddKeyText and CURL.FormAddKeyValue.
Example Databases
Blog Entries
- Translating Insert from URL options for CURL to MBS Plugin calls
- MBS FileMaker Plugin, version 10.3pr1
- Using NetVerify web service with FileMaker
This function checks for a license.
Created 18th August 2014, last changed 14th May 2020
CURL.FormAddKeyTextContentType - CURL.FormAddKeyValueContentType