> For the complete documentation index, see [llms.txt](https://docs.decentraland.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.decentraland.org/contributor/contributor-ko/communications/transport-types/livekit.md).

# LiveKit

이 [LiveKit](https://livekit.io/) transport는 지원되는 전송 방식 중 가장 다재다능하고 효율적이며, 또한 구현하기 가장 쉽습니다. 클라이언트는 해당 realm의 [Archipelago](https://github.com/decentraland/docs/blob/main/contributor/archipelago/README.md) 서비스에서 적절한 연결 문자열을 받거나, 고정 전송 방식으로 표시된 경우 이를 사용해야 합니다.

{% hint style="info" %}
오픈 소스 [Comms Station](https://decentraland.github.io/comms-station/).
{% endhint %}

커스텀 [웹소켓](https://github.com/decentraland/docs/blob/main/contributor/transport-types/websocket/README.md) 전송 방식과 달리, 타사(오픈 소스) 라이브러리를 사용하여 모든 전송 계층 로직과 직렬화를 추상화함으로써 개발 과정을 크게 단순화합니다.

LiveKit 전송 URI는 다음으로 시작합니다 `livekit:` 접두사 뒤에 다음이 옵니다 `wss://` 서버 URL. 또한 사전 승인된 `access_token`, 다음에 의해 생성된 [Archipelago](https://github.com/decentraland/docs/blob/main/contributor/archipelago/README.md) 클라이언트가 인증할 때.

```
livekit:wss://comms.example.com?access_token=eyJhbGciOiJI...
```

### 연결 및 인증

LiveKit 클라이언트 라이브러리는 모든 연결 및 인증 로직을 깔끔하게 캡슐화합니다.

LiveKit 전송 방식을 사용할 때 추가 인증 단계는 없습니다.  `access_token` Archipelago에서 제공되는 것은 이미 검증되고 승인되었습니다.

### 메시지 교환

LiveKit 라이브러리에 의존하는 클라이언트는 손쉽게 브로드캐스트하고, 직접 메시지를 보내고, 라이브 미디어 피드를 게시할 수 있습니다.

페이로드는 일반 통신 [`패킷`](https://github.com/decentraland/docs/blob/main/contributor/messages/README.md) 추가 래핑 없이.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.decentraland.org/contributor/contributor-ko/communications/transport-types/livekit.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
