python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
NestJS Fastify JWKS Validation
I am using the Fastify Adapter in my NestJS application and would like to add some logic to do JWKS validation, similar to the passport example on the Auth0 website.
// src/authz/jwt.strategy.ts
...
mh377
Votes: 0
Answers: 1
Not able to update req url since req.raw is undefined in nestjs fastify custom middleware
I have applied middleware to one of my application in Nestjs Fastify.
In middleware I want to access userId from req url and remove it from there. Since I was using FastifyRequest as a req type I was ...
Raj
Votes: 0
Answers: 0
Increase body limit with nestjs & fastify
My main.ts looks like this :
import { NestFactory } from '@nestjs/core';
import { FastifyAdapter, NestFastifyApplication } from '@nestjs/platform-fastify';
import { Logger } from 'nestjs-pino';
import...
Valentine
Votes: 0
Answers: 1