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

# 路由

> laravel-bluesky 包自动定义的 AT Protocol / XRPC 路由一览及配置方法。

## 包定义的路由

包会自动定义以下路由。你可以通过 config 或 `.env` 单独禁用。

| 路径                                          | 路由名                             |
| ------------------------------------------- | ------------------------------- |
| `/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`    |

要修改响应，请使用 [OAuthConfig](https://github.com/invokable/laravel-bluesky/blob/main/src/Socialite/OAuthConfig.php) 或 [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

- [路由](/zh/routing.md)
- [请求生命周期](/zh/lifecycle.md)
- [Laravel Socialite（社交登录）](/zh/socialite.md)
- [Laravel Sentinel — 路由保护中间件调查](/zh/blog/sentinel-introduction.md)
- [邮件验证（Email Verification）](/zh/verification.md)
