> 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/signed-login.md).

# 서명된 로그인

Signed Login 전송은 서버가 클라이언트를 아일랜드에 할당하는 방식을 맞춤 설정하고 싶을 때 사용할 수 있으며, 아키텍처에서 Archipelago를 대체하거나 감싸는 방식으로 사용할 수 있습니다.

실시간 백엔드에 직접 연결하는 대신, Signed Login은 하나의 [서명된 fetch](https://github.com/decentraland/docs/blob/main/contributor/auth/signed_fetch/README.md) 연결 문자열을 얻기 위한 것입니다. 이 중간 단계는 서버가 원하는 어떤 할당 전략이든 사용할 수 있게 해줍니다.

Signed Login URI는 다음과 같은 형태입니다:

```
signed-login:https://comms.example.com/auth&param=value
```

다음의 뒤에 오는 부분은 `signed-login:` 접두사 뒤에는 유효한 URL이면 무엇이든 올 수 있습니다.

### 사용법

Signed Login 요청은 다음을 사용하여 구성됩니다. [서명된 fetch](https://github.com/decentraland/docs/blob/main/contributor/auth/signed_fetch/README.md) 메커니즘.

성공할 경우 응답의 상태는 `200` 이며, JSON 본문에는 *적어도* 다음 필드가 포함됩니다:

| 필드             | 유형       | 값                                       |
| -------------- | -------- | --------------------------------------- |
| `fixedAdapter` | `string` | 할당된 전송 URI(예: `livekit:` 또는 `ws-room:`) |

예를 들면:

```
{ 
  fixedAdapter: "ws-room:wss://comms.example.com/rooms/17"
}
```

실패할 경우 응답은 적절한 상태 코드와 다음을 포함하는 JSON 본문을 가질 수 있습니다. *적어도* 다음 필드가 포함됩니다:

| 필드        | 유형       | 값                           |
| --------- | -------- | --------------------------- |
| `message` | `string` | (선택 사항) 실패에 대한 설명 또는 오류 코드. |

JSON 본문에 추가 필드가 있는 응답도 유효하며, 오류의 내용은 `message` 지정되지 않습니다. 구현체는 이 유연성을 활용하여 `signed-login:` 각자의 애플리케이션에 적합한 방식으로 통합할 수 있습니다.


---

# 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/signed-login.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.
