다음 팀들이 신뢰합니다
COMPANYSTARTUPAGENCYSTUDIOLAB
1단계
소스를 연결하세요
PDF, GitHub, URL, Notion — 모든 것을 한 곳에 모으세요.
PDF
클릭하여 연결
API Spec v2.pdf
2.4 MB
GITHUB
클릭하여 연결
auth-service
github.com/team/auth-service
URL
클릭하여 연결
OAuth 2.0 RFC 6749
tools.ietf.org/html/rfc6749
NOTION
클릭하여 연결
Design System
notion.so/design-system
2단계
AI가 지식을 구조화합니다
엔티티, 관계, 개념이 자동으로 추출되고 연결됩니다.
추출된 엔티티
- CONCEPTAuthentication Flow3
- APIPOST /auth/login2
- COMPONENTJWT Token4
- COMPONENTRefresh Token2
- DECISIONJWT vs Session Token2
- PERSON@david (Backend Lead)3
3단계
즉시 답변과 문서를 얻으세요
AI가 문서를 초안 작성하고, 질문에 답하고, 다음 액션을 제안합니다 — 모두 팀 지식을 기반으로.
Specify AI Agent
Auth Service API 문서
Auth Service API Documentation
This document describes the authentication endpoints for the Auth Service. All endpoints are versioned under /api/v2/auth.
Overview
The Auth Service implements a stateless JWT-based authentication system with refresh token rotation. Tokens are signed using RS256 and validated at the API gateway layer without requiring a database lookup.
Endpoints
POST /auth/login
Authenticates a user and returns a JWT access token and refresh token.
POST /api/v2/auth/login
Content-Type: application/json
{
"email": "user@example.com",
"password": "••••••••"
}
Response
{
"accessToken": "eyJhbG...",
"refreshToken": "dGhpcy...",
"expiresIn": 900
}
Note: Access tokens expire in 15 minutes. Refresh tokens are valid for 7 days and are rotated on every use.
팀에 필요한 모든 것
모든 기능이 팀의 지식 베이스와 연동됩니다