You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My use-case is to add basic information about the user currently logged in like first name, last name, or email.
I'm using several types of authentification with several sources of users and different JWT token
=> I'd like to have a custom "source" claim in the JWT so Symfony authentification could pick the right service to handle the token based on this "source" claim value.
Also, I'm using this lib as an SSO: as-is, the Service Provider needs to make an API call to get information about the user related to the token. I'm thinking of adding claims like "first name", "last name", or "email".
My use-case is to add basic information about the user currently logged in like first name, last name, or email.
I'm using several types of authentification with several sources of users and different JWT token
=> I'd like to have a custom "source" claim in the JWT so Symfony authentification could pick the right service to handle the token based on this "source" claim value.
Also, I'm using this lib as an SSO: as-is, the Service Provider needs to make an API call to get information about the user related to the token. I'm thinking of adding claims like "first name", "last name", or "email".
Right now, the only way is to override the
convertToJWT()
method from https://github.com/thephpleague/oauth2-server/blob/master/src/Entities/Traits/AccessTokenTrait.phpI guess that #1154 could be leverage to let users "hook" in the JWT generation too :)
The text was updated successfully, but these errors were encountered: