Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
WebHook.SetScript
Sets the script to call when request was received.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
WebHook | 11.5 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | ✅ Yes |
MBS( "WebHook.SetScript"; WebHook; FileName; ScriptName ) More
Parameters
Parameter | Description | Example |
---|---|---|
WebHook | The reference number of the web hook. | $webhook |
FileName | The file name for the script to trigger. | "test.fmp12" |
ScriptName | The script name of the script to launch. | "WebHookCalled" |
Result
Returns OK or error.
Description
Sets the script to call when request was received.For server, please use WebHook.Check in a looping script to check regularly for new requests.
If you use AutoAnswer and you don't keep connection open, you can check for new requests once a minute with a scheduled script.
With plugin version 6.0 or newer the script name can be a script ID number. In that case the plugin queries the script name for the given script ID. This allows to call scripts by ID and avoid problems if scripts are later renamed.
Notice: FileMaker 19.2 adds a fmplugin extended privileges. If you have such an extended privileges to allow the plugin to trigger scripts, you need to grant permissions for it. If such a privilege is not defined, the plugin is allowed to trigger scripts. See FileMaker product documentation for details.
Examples
Start a normal HTTP Webhook:
Set Variable [ $$WebHooks ; Value: MBS("WebHook.Create") ]
Set Variable [ $r ; Value: MBS("WebHook.Listen"; $$WebHooks; 9999) ]
Set Variable [ $r ; Value: MBS("WebHook.SetScript"; $$WebHooks; Get(FileName); "WebHookReceived") ]
See also
- WebHook.Check
- WebHook.Create
- WebHook.GetScriptName
- WebHook.List
- WebHook.Listen
- WebHook.SetMode
- WebHook.SetSSL
Example Databases
- CURL/Email/Office 365 oAuth SMTP
- WebHook/Trigger script with Webhook/WebHook Listener
- WebHook/WebHook Chat/WebHook Chat
- WebHook/WebHook to serve html
- WebHook/WebHook
Blog Entries
This function is free to use.
Created 13th October 2021, last changed 13th November 2021