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

# Routes

> Liste et configuration des routes AT Protocol / XRPC définies automatiquement par le package laravel-bluesky.

## Routes définies par le package

Le package définit automatiquement les routes suivantes. Vous pouvez les désactiver individuellement via la configuration ou `.env`.

| Chemin                                      | Nom de route                    |
| ------------------------------------------- | ------------------------------- |
| `/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`    |

Pour modifier les réponses, utilisez [OAuthConfig](https://github.com/invokable/laravel-bluesky/blob/main/src/Socialite/OAuthConfig.php) ou [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 Sentinel — analyse du middleware de protection des routes](/fr/blog/sentinel-introduction.md)
- [Génération d'URL](/fr/urls.md)
- [Guide de mise à niveau de Laravel 12 vers 13](/fr/blog/upgrade-12-to-13.md)
- [Développer un package avec Testbench Workbench](/fr/advanced/package-workbench.md)
- [Introduction à l'authentification](/fr/authentication.md)
