You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
… multiple values with same name. (#2964)
* Now the form-url-encoded params in the body can contain multiple values with same name.
* Updated the tests and renamed the function name
* Added the inimported function
* Minor changes.
Passing arrays as POST body variables requires repeating the variable name and appending square brackets.
Example:
So the sent/urlencoded POST data should look like:
item%5B%5D=1&item%5B%5D=2&item%5B%5D=n
However Bruno only sends:
item%5B%5D=n
Effectively it is ignoring all the prior instances of the same variable name.
The request settings I used:
The text was updated successfully, but these errors were encountered: