Skip to content
Merged
Changes from 2 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
2 changes: 2 additions & 0 deletions src/content/docs/realtime/turn/generate-credentials.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ The JSON response below can then be passed on to your front-end application:
}
```

Note: the list of URLs returned contains URLs with the primary and alternate ports. The alternate port 53 is known to be blocked by web browsers. So this TURN URL will time out if used in browsers. If you are using trickle ICE this is not going to cause problems. But if you wait for ICE gathering to finish before passing on the ICE candidates you might want to filter out the alternate URL with port 53 to avoid waiting for it to time out.

Use `iceServers` as follows when instantiating the `RTCPeerConnection`:

```js
Expand Down
Loading