> ## 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-TW/routing.md)
- [請求生命週期](/zh-TW/lifecycle.md)
- [Laravel Socialite（社群認證）](/zh-TW/socialite.md)
- [Laravel Sentinel — 路由保護 Middleware 調查](/zh-TW/blog/sentinel-introduction.md)
- [URL 生成](/zh-TW/urls.md)
