Tag: access-token
-
How to authorize NestJs, GraphQL app using Auth0 and Passport?
0 I have developed a NestJs graphql app and now I want to authorize all my mutations and queries. Users get authenticated from Auth0. after following this article I have created below files in my project. AuthModule : import { Module } from ‘@nestjs/common’; import { PassportModule } from ‘@nestjs/passport’; import { JwtStrategy } from…