Revisited the question, to update the Client Access URL, simply replace the Host name with the custom domain name should work:
var uriBuilder = new UriBuilder("client_access_url");
uriBuilder.Host = "<the-custom-domain>";
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We are trying to use PubSub to send out the websocket URLs to clients, but we would prefer the URL to use our own custom domain instead of "wss://????..webpubsub.azure.com/client/...".
We will have our own service APIs to generate the client access URL for PubSub on demand, so client should just see our custom domain both through our service APIs and websocket connection URLs.
Is there any way currently to choose a custom domain for the client access URL for PubSub? If not, is it possible to put it on the roadmap?
Thanks!
Revisited the question, to update the Client Access URL, simply replace the Host name with the custom domain name should work:
var uriBuilder = new UriBuilder("client_access_url");
uriBuilder.Host = "<the-custom-domain>";