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
This bundle lacks command and storage for storing public/private key, so you need to create them by yourself.
Authorization code storage is not used with this config. Probably because generated JWT token contains all information you need. (You can extract information from JWT by decoding with the public key)
You also need to change the implementation of token storage if you use JWT. Without that, the server tries to store generated token to the DB and causes problems, because JWT is not a random string and violates unique constraints of token column.
In the OAuth2 server that this based on it appears to support JWT tokens (http://bshaffer.github.io/oauth2-server-php-docs/overview/jwt-access-tokens/) but I don't see how to utilize this with the Symfony bundle. Is there some way in the tokenAction() for the TokenController to do this?
The text was updated successfully, but these errors were encountered: