0Pricing
Node.js Backend Development Bootcamp · 강의

OAuth2 비밀번호 흐름 연동

FastAPI 애플리케이션에서 사용자 로그인과 토큰 발급을 위해 OAuth2 비밀번호 흐름을 연동합니다.

OAuth2 비밀번호 흐름 연동은(는) CoddyKit의 무료 Node.js Backend Development Bootcamp 강의입니다. 이것은 6개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Node.js Backend Development Bootcamp 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Node.js Backend Development Bootcamp 강의에는 총 6개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Intro to OAuth2 Password Flow

Welcome! This lesson focuses on integrating the OAuth2 Password Flow in FastAPI. It's a standard and secure way for users to log in to your application.

This flow allows users to provide their username and password directly to your API. If successful, your API issues an access token, which the user then uses to access protected resources.

Why Use Password Flow?

The OAuth2 Password Flow is particularly suitable for first-party applications, like your own mobile app or web frontend, where you fully trust the client.

  • Security: It's a widely adopted, well-understood security standard.
  • Simplicity: Provides a straightforward login experience for users.
  • Token-based: After login, users get a token, avoiding the need to send credentials with every request.

Key FastAPI Components

FastAPI provides specialized utilities to make implementing OAuth2 Password Flow easy:

  • OAuth2PasswordBearer: A dependency that extracts the access token from the Authorization: Bearer header of incoming requests.
  • OAuth2PasswordRequestForm: A dependency that automatically parses the username and password from the form data sent during a login request.

We'll combine these with FastAPI's powerful Dependency Injection system.

Setting up OAuth2PasswordBearer

First, we need to initialize OAuth2PasswordBearer. The tokenUrl parameter is crucial; it tells clients where to send their login credentials to obtain an access token.

This URL will be the path to our login endpoint.

from fastapi import FastAPI
from fastapi.security import OAuth2PasswordBearer

app = FastAPI()

# 'token' is the URL path where clients will log in
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")

# We will create a @app.post("/token") endpoint next!

The Login Endpoint: /token

This is the core endpoint where users will send their username and password. It's typically a POST request.

We use OAuth2PasswordRequestForm as a dependency. FastAPI automatically parses the incoming form data and provides username and password attributes.

from fastapi import Depends, HTTPException, status
from fastapi.security import OAuth2PasswordRequestForm

@app.post("/token")
async def login_for_access_token(
    form_data: OAuth2PasswordRequestForm = Depends()
):
    # 1. Authenticate user (verify username/password)
    # 2. If valid, create an access token
    # 3. Return the token
    pass # Details coming in the next scene!

Full Code: Login & Protected Endpoint

Here's a complete FastAPI application demonstrating the OAuth2 Password Flow. It includes the /token endpoint for login and a /users/me/ endpoint protected by the access token.

Run this code: Save as main.py, then uvicorn main:app --reload. Access docs at http://127.0.0.1:8000/docs.

from fastapi import FastAPI, Depends, HTTPException, status
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from pydantic import BaseModel
from typing import Optional

app = FastAPI()

oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")

# --- Mock User & Token Logic (Simplified for this lesson) ---
class UserInDB(BaseModel):
    username: str
    hashed_password: str
    disabled: Optional[bool] = None

class CurrentUser(BaseModel):
    username: str
    email: Optional[str] = None
    full_name: Optional[str] = None
    disabled: Optional[bool] = None

fake_users_db = {
    "testuser": UserInDB(username="testuser", hashed_password="password123", disabled=False),
    "disableduser": UserInDB(username="disableduser", hashed_password="securepass", disabled=True)
}

def get_user_from_db(username: str):
    user_data = fake_users_db.get(username)
    if user_data:
        return CurrentUser(username=user_data.username, full_name=f"{user_data.username} Full", email=f"{user_data.username}@example.com", disabled=user_data.disabled)
    return None

def authenticate_user(username: str, password: str):
    user_in_db = fake_users_db.get(username)
    if not user_in_db or user_in_db.hashed_password != password: # In real app, use password hashing
        return None
    return get_user_from_db(username)

def create_access_token(data: dict):
    # In a real app, use `jwt.encode` with a secret key (from Lesson 1)
    return f"mock_jwt_for_{data['sub']}"
# --- End Mock Logic ---

@app.post("/token")
async def login_for_access_token(
    form_data: OAuth2PasswordRequestForm = Depends()
):
    user = authenticate_user(form_data.username, form_data.password)
    if not user:
        raise HTTPException(
            status_code=status.HTTP_401_UNAUTHORIZED,
            detail="Incorrect username or password",
            headers={"WWW-Authenticate": "Bearer"},
        )
    if user.disabled:
        raise HTTPException(
            status_code=status.HTTP_400_BAD_REQUEST,
            detail="Inactive user"
        )
    access_token = create_access_token(data={"sub": user.username})
    return {"access_token": access_token, "token_type": "bearer"}

# Dependency to get the current user from the token
async def get_current_user(token: str = Depends(oauth2_scheme)):
    # In a real app, this would decode and validate the JWT (from Lesson 1)
    if not token.startswith("mock_jwt_for_"):
        raise HTTPException(
            status_code=status.HTTP_401_UNAUTHORIZED,
            detail="Invalid authentication credentials",
            headers={"WWW-Authenticate": "Bearer"},
        )
    username = token.replace("mock_jwt_for_", "")
    user = get_user_from_db(username)
    if user is None or user.disabled:
        raise HTTPException(
            status_code=status.HTTP_401_UNAUTHORIZED,
            detail="Invalid authentication credentials or inactive user",
            headers={"WWW-Authenticate": "Bearer"},
        )
    return user

# A Protected Endpoint
@app.get("/users/me/", response_model=CurrentUser)
async def read_users_me(current_user: CurrentUser = Depends(get_current_user)):
    return current_user

Understanding get_current_user

The get_current_user function is a crucial dependency. It performs two main tasks:

  1. Extract Token: Uses oauth2_scheme = Depends(OAuth2PasswordBearer(...)) to get the token from the Authorization header.
  2. Validate & Fetch User: Decodes and validates the token (using JWT logic from Lesson 1 in a real app). If valid, it fetches and returns the corresponding User object. If invalid or missing, it raises an HTTPException.

How Clients Interact

Here's a typical client interaction with the OAuth2 Password Flow:

  1. Client (e.g., mobile app) sends a POST request to /token with username and password in form data.
  2. If successful, the API returns an access_token (e.g., {"access_token": "abc.123.xyz", "token_type": "bearer"}).
  3. For subsequent protected requests, the client includes this token in the Authorization header: Authorization: Bearer abc.123.xyz.

Quick Check: OAuth2 Components

Which FastAPI component is primarily responsible for parsing the username and password from an incoming login request (form data)?

Recap: OAuth2 Password Flow

You've successfully integrated the OAuth2 Password Flow in FastAPI!

  • You initialized OAuth2PasswordBearer with a tokenUrl.
  • You created a /token endpoint using OAuth2PasswordRequestForm to handle user login.
  • You understood how to authenticate users and issue access tokens.
  • You secured endpoints by using a get_current_user dependency to extract and validate the access token.

Next, you can explore Role-Based Access Control (RBAC) to add more granular permissions based on user roles!

자주 묻는 질문

“OAuth2 비밀번호 흐름 연동” 강의는 무료인가요?

네 — “OAuth2 비밀번호 흐름 연동” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Node.js Backend Development Bootcamp 강의 전체를 잠금 해제할 수 있습니다. Node.js Backend Development Bootcamp 강의에는 총 6개의 강의가 포함되어 있습니다.

“OAuth2 비밀번호 흐름 연동”에서 뭘 배우나요?

FastAPI 애플리케이션에서 사용자 로그인과 토큰 발급을 위해 OAuth2 비밀번호 흐름을 연동합니다. 브라우저에서 직접 실행하는 실습 코드로 Node.js Backend Development Bootcamp을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Node.js Backend Development Bootcamp을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Node.js Backend Development Bootcamp은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 6개 중 4번째 강의입니다.

“OAuth2 비밀번호 흐름 연동” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Node.js Backend Development Bootcamp 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Node.js Backend Development Bootcamp 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 사용자 등록과 로그인
  2. JWT 토큰 생성 및 검증
  3. 상태 비저장 인증을 위한 JWT
  4. OAuth2 비밀번호 흐름 연동
  5. 역할 기반 접근 제어
  6. 역할 기반 접근 제어(RBAC)
← Node.js Backend Development Bootcamp(으)로 돌아가기