You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-web-pubsub/quickstart-use-client-sdk.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.devlang: azurecli
12
12
13
13
# Quickstart: Create a client using the Azure Web PubSub client SDK (preview)
14
14
15
-
Get started with the Azure Web PubSub client SDK for Python or JavaScript to create a pub-sub client
15
+
Get started with the Azure Web PubSub client SDK for .NET or JavaScript to create a Web PubSub client
16
16
that:
17
17
18
18
* connects to a Web PubSub service instance
@@ -93,7 +93,7 @@ Install the Azure Web PubSub client SDK for the language you're using.
93
93
94
94
The SDK is available as an [npm module](https://www.npmjs.com/package/@azure/web-pubsub-client).
95
95
96
-
OPen a terminal winder and install the Web PubSub client SDK using the following command.
96
+
Open a terminal window and install the Web PubSub client SDK using the following command.
97
97
98
98
```bash
99
99
npm install @azure/web-pubsub-client
@@ -128,7 +128,7 @@ Note that the The SDK is available as a [NuGet packet](https://www.nuget.org/pac
128
128
129
129
### Create and connect to the Web PubSub service
130
130
131
-
This code example creates a Web PubSub client that connects to the Web PubSub service instance. A client uses a Client Access URL to connect and authenticate with the service. It's best practice to not hard code the Client Access in your code.
131
+
This code example creates a Web PubSub client that connects to the Web PubSub service instance. A client uses a Client Access URL to connect and authenticate with the service. It's best practice to not hard code the Client Access URL in your code. In the production world, we usually set up an app server to return this URL on demand.
132
132
133
133
For this example, you can use the Client Access URL you generated in the portal.
134
134
@@ -157,7 +157,7 @@ Edit the `Program.cs` file and add following code:
0 commit comments