I have generated Client Access URL using Client URL Generator with all access, which is working fine in Quickstart website provided by azure, But if i try the same link in postman websocket gets connected then if i send
{ "type": "joinGroup", "group": "Group1", "ackId": 1 }
to join group Websocket gets disconnected.
Postman version 7.2.0, arecompatible.Check the URL that you are using the correct
WebSocket URLformat for Azure Web PubSub. The URL should start with "wss://" and include the endpoint and hub details.Azure Web PubSub requires specific headers or authentication tokens for successful WebSocket connections.
By default, Postman validates SSL certificates. If you are using a self-signed or custom certificate for
Azure Web PubSub service, you need to disable SSL certificate verification in Postman's settings.Check the error messages when the WebSocket connection is closed or fails to establish. Azure Web PubSub provides error messages or status codes.
For more information refer to the Blog and MSDoc.