You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Use request with x-www-form-urlencoded

To use x-www-form-urlencoded requests, you need to add a Content-Type to the HTTP Config in the Props properties: "Content-Type": "application/x-www-form-urlencoded"

You can then set your properties with the following syntax: 

The keys and values are encoded in key-value tuples separated by '&', with a '=' between the key and the value.

Ex: field1=value1&field2=value2