Proxyman version
2.0.1
Steps to reproduce
- Tools -> Compose Request
- Enter URL:
https://postman-echo.com/get?foo=bar1&foo=bar2
- Select Query tab
- Change
bar1 to bar
- Notice URL change to
https://postman-echo.com/get?foo=bar2, ignoring the (duplicate) first foo parameter
Expected behavior
URL should change to https://postman-echo.com/get?foo=bar&foo=bar2.
Duplicate keys are generally used to encode arrays, see e.g. this for context.
Proxyman version
2.0.1
Steps to reproduce
https://postman-echo.com/get?foo=bar1&foo=bar2bar1tobarhttps://postman-echo.com/get?foo=bar2, ignoring the (duplicate) firstfooparameterExpected behavior
URL should change to
https://postman-echo.com/get?foo=bar&foo=bar2.Duplicate keys are generally used to encode arrays, see e.g. this for context.