반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 스프링 공부
- JPA스터디
- 스프링
- DDD
- Axon framework
- 코테공부
- 스프링부트
- 자료구조공부
- Flutter
- 플러터 공부
- 스프링부트공부
- 프로그래머스
- nestjs공부
- JPA공부
- querydsl
- JPA예제
- 스프링공부
- 플러터 개발
- JPA
- K8S
- 자바공부
- 알고리즘공부
- JPA 공부
- 코테준비
- 기술공부
- Kafka
- 기술면접공부
- nestjs스터디
- nestjs
- 카프카
Archives
- Today
- Total
목록nestjs authguard (1)
DevBoi
[NestJs] AuthGuard 전략 복수개 적용하기
오늘은 AuthGuard를 이용하여, 해당 가드를 적용할건데 각기 다른 정책으로 관리가 되게 개발을 할 것이다. 쉽게 얘기하면, 한개는 일반 사용자인지, 즉 auth bearer token으로 요청을 하는지 또 한개는 해당 사용자이지만, 사업가의 authCode인지를 체크하는 것이다. 적용한 코드를 참고 바란다. 1.패키지 구조 2.auth-guard.ts import { ExecutionContext, Injectable } from "@nestjs/common"; import { AuthGuard as NestAuthGuard } from "@nestjs/passport"; import { Observable } from "rxjs"; @Injectable() export class JwtAuthGu..
Develop/[NestJs]
2023. 7. 4. 22:16