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
무상태 프로토콜 (Stateless Protocol)
(1) 인가 시도 (2) 확인된 사용자라면 액세스 토큰 제공 (3) 인증이 필요한 부분에 대한 로직 시 액세스 토큰 전송 (4) 받은 토큰을 검증 후 보호된 자원 제공
(1) 인가 시도
(2) 확인된 사용자라면 액세스 토큰 제공
(3) 인증이 필요한 부분에 대한 로직 시 액세스 토큰 전송
(4) 받은 토큰을 검증 후 보호된 자원 제공
특징
보안성
self-contained
확장성
두 개체 사이에 JSON 객체를 사용하여 정보를 안전하게 전달
(1) Header : JWT 토큰 유형, 해시 알고리즘 (2) Payload : 클라이언트의 정보 (3) Signature : 서명 정보 jwt encode/decode 해보는 사이트
(1) Header : JWT 토큰 유형, 해시 알고리즘
(2) Payload : 클라이언트의 정보
(3) Signature : 서명 정보
jwt encode/decode 해보는 사이트
일반적으로 Token은 헤더의 Authorizaion 필드에 담김
Authorizaition: <type> : 인증 타입. 전송 받은 인증 타입에 따라 토큰을 다르게 처리 Basic : Bearer : Digest HOBA :
Authorizaition:
<type> : 인증 타입. 전송 받은 인증 타입에 따라 토큰을 다르게 처리
<type>
Basic :
Bearer :
Digest
HOBA :
The text was updated successfully, but these errors were encountered:
hyejungg
No branches or pull requests
🔥 알게된 점
📚 배운 점
Middleware
유저 인증
무상태 프로토콜 (Stateless Protocol)
인증 (Authentication)
인가 (Authorization)
인증 방법
특징
보안성
: 정보가 담긴 데이터를 암호화self-contained
: jwt 자체적으로 모든 정보를 포함확장성
: 인증 저장소를 필요로 하지 않음JWT (Json Web Token)
두 개체 사이에 JSON 객체를 사용하여 정보를 안전하게 전달
일반적으로 Token은 헤더의 Authorizaion 필드에 담김
API 명세서
API 명세서 구성 요소
The text was updated successfully, but these errors were encountered: