Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

FormUrlEncoded

FormUrlEncoded :
[FormUrlEncoded] NL+ FormUrlEncodedContent

FormUrlEncodedContent :
TomlKeyValues

Example

[FormUrlEncoded]
someString = "some string"
someInt = 42
someBool = true

Explanation

Defines entries in a key-value pair format which will be sent in the request body as application/x-www-form-urlencoded request. The format of the contents of this block is TOML.

The example from above results in the following body content.

someString=some+string&someInt=42&someBool=true

Template parameters in parameter values will be substituted.