I need to send Stomp subprotocol subscribe command
SUBSCRIBE
id:sub-0
destination:/topic/xxxx
It sends the command but fail to subscribe the topic since there is no null character at the end hence I get error that payload is incorrect
Can some one help me how to do send the subscribe command or send Nul character (Byte 0x00)
I’ve started using the websocket feature in Postman and it works like a charm so far. I haven’t even found any bugs yet.
Here’s a list of features I would like to see added, they may be already on the roadmap since they’re pretty much features already present for HTTP requests, but just in case I’ll mention them:
Use the same cookies as in the HTTP requests. So I could, for example, log in a server via an HTTP auth request and then connect to the websocket in the same session.
Ability to save a list of pre-defined messages to send, with pre-send scripts.
Test scripts for executing after receiving messages.
Two-pane view support. Messages at the right and everything else on the left.
I’m loving the addition of the websocket client, as I haven’t had a real utility for testing websocket connections, although one issue I have is that new messages are added to the top, and there is no option (as far as I’m aware of, at least) to make it add new messages to the bottom instead. If something like that could be added, it would be wonderful!
That aside, the websocket client is great, and I haven’t come across any other issues with it.
Hi there, I am able to connect to my websocket server using postman. This server accepts binary audio stream and response with speech to text in a json structure. Is there a way in postman to send to my ws server continues audio stream (For example from my local microphone)?
Firstly, Congrats on getting this functionality added! On a quick look, it seems pretty good.
Here are a few issues I’ve faced with it so far:
I don’t seem to be able to name or save my requests, so can’t use them from within a collection.
There doesn’t seem to be the option to use variables at any scope other than global in websockets. It would be nice to be able to define variables within the request scope - like regular http requests.
I can’t remove or modify any of the headers (in particular, I wanted to be able to edit the “Sec-WebSocket-Extensions” header)
(related to the 3rd point) I obtain a compressed response which doesn’t get decompressed before showing it to me, and doesn’t give me the option to decompress it.
I think it would be more intuitive to be able to select previously sent messages under “compose”, rather than having to keep all messages sent and received and delve through them to decide which one to copy, copy it and head to the compose area to send.
The pre-request and test scripts might be a good idea to include here as well. I’d like to be able to pull information out of messages received and use them for regular http requests.
In all, great work so far - being as ubiquitous as you are, you’re always likely to have very demanding users (like myself), but this should help you constantly improve and stay at your market leading position.
WebSocket support is greatly appreciated. Additional features that seem beneficial after my first tests:
Save requests and add to collections
Integrated SignalR websocket support. Would for example mean to automatically append/strip the 0x1e byte after any message or possibly allow for automatic protocol handshake.
Automatic authorization handling similar to existing functionality http header.
Easily switch between sent messages to resend or start from copy.
To test flows I often need to send the same messages on every connection start. For example a hello, connect instructions etc. It would be cool to “quicksave” message bodys within a websocket connection that can quickly be sent from the list by just clicking them.
First CTRL + number is a short cut by postman to change the tab. Even if disable the short cut
pressing Ctrl + @ does not add anything in the console window.
I already tried every googled way and could not find a way to do so.
We have enabled support for subprotocols in the latest release. With this, you should now be able to use the Sec-WebSocket-Protocol header to negotiate the subprotocol with the server.
We are also actively working on adding dedicated support for few of the common subprotocols and will provide updates on the GitHub thread #9997, once we have something.
I’m trying to make it work with SignalR and c#, I was following a tutorial to test this from MS: https://docs.microsoft.com/en-us/aspnet/core/tutorials/signalr?view=aspnetcore-5.0&tabs=visual-studio
And it connects successfully using wss endpoint:
However none of the messages pass trough, and when I open it from webBroswer client (same client from the tutorial), and debug the code, it only shows 1 client connected (the browser one) ;/
Edit:
As well verified from .NET code, that connection is not invoked, as there is a method in hub that can be accessed public override Task OnConnectedAsync() which does not get called
Edit2:
Wrote separate .net client and connected to the application, works just fine. But Postman even after connecting (shows connected successfully) receives no messages