Skip to content

Commit f0b58a0

Browse files
authored
Merge pull request #126908 from changeworld/patch-6
Fix typo: programatically -> programmatically
2 parents 1467783 + eea0297 commit f0b58a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-web-pubsub/reference-client-sdk-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ npm install @azure/web-pubsub-client
3838
```
3939

4040
### 2. Connect with your Web PubSub resource
41-
A client uses `Client Access URL` to connect and authenticate with the service, which follows a pattern of `wss://<service_name>.webpubsub.azure.com/client/hubs/<hub_name>?access_token=<token>`. A client can have a few ways to obtain `Client Access URL`. For this quick guide, you can copy and paste one from Azure portal shown. (For production, your clients usually get `Client Access URL` generated on your application server. [See details](#use-an-application-server-to-generate-client-access-url-programatically) )
41+
A client uses `Client Access URL` to connect and authenticate with the service, which follows a pattern of `wss://<service_name>.webpubsub.azure.com/client/hubs/<hub_name>?access_token=<token>`. A client can have a few ways to obtain `Client Access URL`. For this quick guide, you can copy and paste one from Azure portal shown. (For production, your clients usually get `Client Access URL` generated on your application server. [See details](#use-an-application-server-to-generate-client-access-url-programmatically) )
4242

4343
:::image type="content" source="./media/reference-client-sdk-javascript/get-client-access-url.png" alt-text="Screenshot showing how to get Client Access Url on Azure portal":::
4444

@@ -113,7 +113,7 @@ client.on("stopped", () => {
113113
});
114114
```
115115

116-
### Use an application server to generate `Client Access URL` programatically
116+
### Use an application server to generate `Client Access URL` programmatically
117117
In production, clients usually fetch `Client Access URL` from an application server. The server holds the `connection string` to your Web PubSub resource and generates the `Client Access URL` with help from the server-side library `@azure/web-pubsub`.
118118

119119
#### 1. Application server

0 commit comments

Comments
 (0)