Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Finally the application enables CORS support and the port where the application

---

#### Create token
### Create token

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -162,7 +162,7 @@ Finally, the returned token is sent back to the client.

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Going deeper, the `Controller` class has the following fields:

---

#### Create token
### Create token

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -121,7 +121,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Finally the `express` application is initialized. CORS is allowed, JSON body par

---

#### Create token
### Create token

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -127,7 +127,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The `index.php` file imports the required dependencies, sets the HTTP headers fo

---

#### Create token
### Create token

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -131,7 +131,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Finally the `Flask` application is initialized and CORS support is enabled.

---

#### Create token
### Create token

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -123,7 +123,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Finally the application configures the port, sets the CORS configuration for Sin

---

#### Create token endpoint
### Create token endpoint

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -128,7 +128,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/application-server/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Then CORS support is enabled and the endpoints are defined. Finally the `axum` a

---

#### Create token endpoint
### Create token endpoint

The endpoint `/token` accepts `POST` requests with a payload of type `application/json`, containing the following fields:

Expand Down Expand Up @@ -181,7 +181,7 @@ If required fields are available, a new JWT token is created. For that we use th

---

#### Receive webhook
### Receive webhook

The endpoint `/livekit/webhook` accepts `POST` requests with a payload of type `application/webhook+json`. This is the endpoint where LiveKit Server will send [webhook events :fontawesome-solid-external-link:{.external-link-icon}](https://openvidu.io/latest/docs/reference/webhooks/#events){:target="_blank"}.

Expand Down
Loading