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/tutorial-build-chat.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ First let's create an ASP.NET Core web app in a `chatapp` folder.
113
113
</html>
114
114
```
115
115
116
-
You can test the server by running `dotnet run --urls http://localhost:8080` and access [http://localhost:8080/index.html](http://localhost:8080/index.html)in the browser.
116
+
You can test the server by running `dotnet run --urls http://localhost:8080` and access `http://localhost:8080/index.html`in the browser.
117
117
118
118
# [JavaScript](#tab/javascript)
119
119
@@ -152,7 +152,7 @@ First let's create an express web app in a `chatapp` folder.
152
152
</html>
153
153
```
154
154
155
-
You can test the server by running `node server` and access [http://localhost:8080](http://localhost:8080) in the browser.
155
+
You can test the server by running `node server` and access `http://localhost:8080` in the browser.
156
156
157
157
# [Java](#tab/java)
158
158
@@ -230,7 +230,7 @@ We use the [Javalin](https://javalin.io/) web framework to host the web pages an
230
230
</html>
231
231
```
232
232
233
-
You can test the server by running the following command under the directory containing the *pom.xml* file, and access http://localhost:8080 in browser.
233
+
You can test the server by running the following command under the directory containing the *pom.xml* file, and access `http://localhost:8080` in browser.
Now let's add a `/negotiate` API to the server to generate the token.
481
481
@@ -526,7 +526,7 @@ Rerun the server using `python server.py`.
526
526
527
527
---
528
528
529
-
You can test this API by accessing [http://localhost:8080/negotiate?id=user1](http://localhost:8080/negotiate?id=user1) and it gives you the full url of the Azure Web PubSub with an access token.
529
+
You can test this API by accessing `http://localhost:8080/negotiate?id=user1` and it gives you the full url of the Azure Web PubSub with an access token.
530
530
531
531
## Handle events
532
532
@@ -879,7 +879,7 @@ The complete code sample of this tutorial can be found [here][code-python].
879
879
880
880
---
881
881
882
-
Open [http://localhost:8080/index.html](http://localhost:8080/index.html). You can input your user name and start chatting.
882
+
Open `http://localhost:8080/index.html`. You can input your user name and start chatting.
883
883
884
884
<!-- Adding Lazy Auth part with `connect` handling -->
0 commit comments