thephpleague / oauth2-server

A spec compliant, secure by default PHP OAuth 2.0 Server

Home Page:https://oauth2.thephpleague.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Feature request] Custom JWT claim

sylfabre opened this issue · comments

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.php

I guess that #1154 could be leverage to let users "hook" in the JWT generation too :)

Is #1122 what you are looking for?
Also #1328 could help

@parallels999 good call, #1328 is what I'm looking for!

Marking this as closed as we have PRs/Issues already noting this request. Thanks