getConfigOptions
Use this function to assign config parameters that should always be set for this type of feed. These values are subsequently accessible from the config using get_config
. Parameters that can be set include some standard connector config options, and any parameters that will be used by the script or by a connection library, if used.
The config options are returned as a Lua table with keys and values both as strings:
{key1=”value1”, Key2=”value2”, ...
Inputs: | [NONE] |
Outputs: | configOptions (table:{string->string}) |
See also: |
Example
function getConfigOptions()
return { SSLMethod="SSLV23", Name1="Value1", Name2="Value2"}
end