postman-app-support
postman-app-support copied to clipboard
Array parameters inside url query string are not correctly sent when establishing a websocket connection
Is there an existing issue for this?
- [X] I have searched the tracker for existing similar issues and I know that duplicates will be closed
Describe the Issue
When I setup a websocket client connection from postman to my API and use array parameters in the url query string in the form of "wss://hostname?deviceId=device1&deviceId=device2" then only the last parameter is sent. In this case deviceId=device2.
Remarks:
- Missing parameter deviceId=device1 is confirmed with packet analysis using Wireshark
- Sending the above URL is tested with other weboscket client tools and works as expected (meaning: parsing at API side is correctly done)
- It worked in previous version of postman
Steps To Reproduce
- Open new websocket tab
- Enter url: wss://hostname?deviceId=device1&deviceId=device2
- Click 'connect'
- API only receives last parameter deviceId=device2
Screenshots or Videos
Operating System
Windows
Postman Version
11.4.0
Postman Platform
Postman App
User Account Type
Signed In User
Additional Context?
No response