-
Notifications
You must be signed in to change notification settings - Fork 31
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
Support: Implementation with NEstJS functional? #63
Comments
Hi @m3c-ode - thanks for raising this Currently we only publish We'd like to natively support other frameworks in the future, but currently that's just limited to Express.js |
Ok I'm asking because I've tried implementing it but was unsuccessful doing
so so far. So I just used the "previous versions" of the packages. So the
one that are used in your NestJS YouTube video and articles.
…On Wed., Jun. 22, 2022, 8:32 a.m. Adam Mcgrath, ***@***.***> wrote:
Hi @m3c-ode <https://github.com/m3c-ode> - thanks for raising this
Currently we only publish express-oauth2-jwt-bearer for Express.js apps -
but if you can get Nest.js working with express-jwt there's no reason why
you couldn't get express-oauth2-jwt-bearer working with Nest.js - I don't
have an example for you though.
We'd like to natively support other frameworks in the future, but
currently that's just limited to Express.js
—
Reply to this email directly, view it on GitHub
<#63 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AX2GJOONZBDPQYWZC6HSS3LVQMWYDANCNFSM5ZJ6GIZA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@adamjmcgrath Please consider publishing access-token-jwt and oauth2-bearer so the community can build custom solutions. 😄 It's not the NestJS way to utilize middleware to perform auth and authz. |
For anyone else looking to use this middleware with Nest, you can try something like this in your app.module.ts:
|
auth0-access-token-jwt Is it really the only way to use Auth0 with Node.js (no express) to verify access tokens? I just have accessToken string and want to verify it, why is it so complicated? |
I have an electron desktop app that communicates with my Node.js API. The electron app sends access token in a |
This would be great to have! |
Description
I've been trying to implement auth0 to use for our NestJs app.
I followed your tutorial on youtube: https://www.youtube.com/watch?v=JzndSOAb6SQ
But this video uses not this actual package, but the other ones that were previously in place (express-jwt, express-jwt-authz, and jwks-rsa)
I'm just curious to know if this new one is easily implementable for a NestJs app as well?
and How different should it be done?
The text was updated successfully, but these errors were encountered: