crawler.form_interaction.pre_crawl.[groupId].cleartext.[urlParameterKey]
Background
Specifies a form parameter for pre-crawl authentication. Form parameters set using this option will be stored within the collection configuration in clear-text and also be visible when viewing the parameter in the administration interface.
This setting should be used to pass any non-sensitive form parameters.
This setting can also be set to a special keyword funnelback_force_blank_value
which causes the parameter to be submitted but with an empty value.
There is also an option that can be used to set sensitive values such as passwords. see:
crawler.form_interaction.pre_crawl.[groupId].encrypted.[urlParameterKey]
Configuration parameters for a rule are grouped using a [GROUP_ID]
value common across all settings that make up the rule (group ID must be a number).
This setting is used in conjunction with the crawler.form_interaction.pre_crawl.[groupId].url
and crawler.form_interaction.pre_crawl.[groupId].form_number
keys.
Examples
Specify two form parameters, username=john
and remember-me=true
, to be passed as parameters to the second form found at
https://www.example.com/login
.
crawler.form_interaction.pre_crawl.1.url=https://www.example.com/login
crawler.form_interaction.pre_crawl.1.form_number=2
crawler.form_interaction.pre_crawl.1.cleartext.remember-me=true
crawler.form_interaction.pre_crawl.1.cleartext.username=john