> 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-es/comunicaciones/tipos-de-transporte/signed-login.md).

# Inicio de sesión firmado

El transporte Signed Login puede ser usado por servidores que desean personalizar la forma en que asignan clientes a islands, reemplazando o envolviendo Archipelago en su arquitectura.

En lugar de conectarse directamente a un backend en tiempo real, Signed Login realiza un [signed fetch](https://github.com/decentraland/docs/blob/main/contributor/auth/signed_fetch/README.md) para obtener la cadena de conexión. Este paso intermedio permite a los servidores emplear la estrategia de asignación que deseen.

Los URIs de Signed Login tienen esta forma:

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

La porción después de `signed-login:` el prefijo puede ser cualquier URL válida.

### Uso

Una solicitud de Signed Login se construye usando el [signed fetch](https://github.com/decentraland/docs/blob/main/contributor/auth/signed_fetch/README.md) mecanismo.

La respuesta, si tiene éxito, tendrá el estado `200` y un cuerpo JSON con *al menos* los siguientes campos:

| Campo          | Tipo     | Valor                                                          |
| -------------- | -------- | -------------------------------------------------------------- |
| `fixedAdapter` | `string` | El URI de transporte asignado (p. ej. `livekit:` o `ws-room:`) |

Por ejemplo:

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

En caso de fallo, la respuesta puede tener cualquier código de estado apropiado y un cuerpo JSON con *al menos* los siguientes campos:

| Campo     | Tipo     | Valor                                                   |
| --------- | -------- | ------------------------------------------------------- |
| `message` | `string` | (Opcional) una explicación o código de error del fallo. |

Las respuestas con campos adicionales en el cuerpo JSON son válidas, y el contenido del error `message` se deja sin especificar. Las implementaciones pueden usar esta flexibilidad para integrar `signed-login:` en sus aplicaciones según lo consideren apropiado.


---

# 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:

```
GET https://docs.decentraland.org/contributor/contributor-es/comunicaciones/tipos-de-transporte/signed-login.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
