Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.x] Mention package for custom claims #7531

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions passport.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- [Refreshing Tokens](#refreshing-tokens)
- [Revoking Tokens](#revoking-tokens)
- [Purging Tokens](#purging-tokens)
- [Custom Token Claims](#custom-token-claims)
- [Authorization Code Grant with PKCE](#code-grant-pkce)
- [Creating The Client](#creating-a-auth-pkce-grant-client)
- [Requesting Tokens](#requesting-auth-pkce-grant-tokens)
Expand Down Expand Up @@ -539,6 +540,11 @@ You may also configure a [scheduled job](/docs/{{version}}/scheduling) in your a
$schedule->command('passport:purge')->hourly();
}

<a name="custom-token-claims"></a>
### Custom Token Claims

Sometimes, you may want to add your own custom claims to the issued access tokens. For this, we recommend using the [laravel-passport-claims](https://github.com/corbosman/laravel-passport-claims) package.

<a name="code-grant-pkce"></a>
## Authorization Code Grant with PKCE

Expand Down