> ## Documentation Index
> Fetch the complete documentation index at: https://kawax.biz/llms.txt
> Use this file to discover all available pages before exploring further.

# Rutas

> Lista y configuración de las rutas AT Protocol / XRPC que define automáticamente el paquete laravel-bluesky.

## Rutas definidas por el paquete

El paquete define automáticamente las siguientes rutas. Puedes desactivarlas individualmente a través de la configuración o de `.env`.

| Ruta                                        | Nombre de la ruta               |
| ------------------------------------------- | ------------------------------- |
| `/bluesky/oauth/client-metadata.json`       | `bluesky.oauth.client-metadata` |
| `/bluesky/oauth/jwks.json`                  | `bluesky.oauth.jwks`            |
| `/xrpc/app.bsky.feed.getFeedSkeleton`       | `bluesky.feed.skeleton`         |
| `/xrpc/app.bsky.feed.describeFeedGenerator` | `bluesky.feed.describe`         |
| `/xrpc/com.atproto.label.queryLabels`       | `bluesky.labeler.query`         |
| `/xrpc/com.atproto.moderation.createReport` | `bluesky.labeler.report`        |
| `/.well-known/did.json`                     | `bluesky.well-known.did`        |
| `/.well-known/atproto-did`                  | `bluesky.well-known.atproto`    |

Para modificar las respuestas, utiliza [OAuthConfig](https://github.com/invokable/laravel-bluesky/blob/main/src/Socialite/OAuthConfig.php) o [WellKnownConfig](https://github.com/invokable/laravel-bluesky/blob/main/src/WellKnown/WellKnownConfig.php).

<Info>
  Source: [docs/route.md](https://github.com/invokable/laravel-bluesky/blob/main/docs/route.md)
</Info>


## Related topics

- [Laravel Socialite (autenticación social)](/es/socialite.md)
- [Laravel Sentinel — Investigación del middleware de protección de rutas](/es/blog/sentinel-introduction.md)
- [Generación de URLs](/es/urls.md)
- [Guía de actualización de Laravel 12 a 13](/es/blog/upgrade-12-to-13.md)
- [Desarrollo de paquetes Laravel](/es/advanced/package-development.md)
