We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to use this plugin...but can't find a way or configuration that enable the use of scopes asigned to the generated JWT...is this possible ?
thanks for your help!
The text was updated successfully, but these errors were encountered:
I think you could just specify the payload using the schema field.
schema
Here's a random example I had:
export const jwtRefreshSetup = new Elysia().use(jwt({ name: 'jwtRefresh', alg: 'HS256', secret: 'fjdfkdjfdkfjdkjdkfjkfjkfjd', schema: t.Object({ id: t.String(), scope: t.Array(t.Union([ t.Literal('profile'), t.Literal('media'), t.Literal('admin'), ])), }), iss: JWT_ISSUER, exp: JWT_REFRESH_TOKEN_DURATION, type: 'refresh', }));
Sorry, something went wrong.
No branches or pull requests
I'm trying to use this plugin...but can't find a way or configuration that enable the use of scopes asigned to the generated JWT...is this possible ?
thanks for your help!
The text was updated successfully, but these errors were encountered: