개발로 자기계발
article thumbnail
728x90
JWT를 생성한 후 Postman을 통해 PUT API를 요청해서 todos 테이블에 데이터를 업데이트해보자

 

1. auth 서버 실행 후 POST API를 통해 사용자 bearer token을 생성한다.

#포트를 8000번이 아닌 9000번에 열겠다.
uvicorn auth:app --reload --port 9000

9000포트로 실행 시킨 이유

#auth.py로 토큰 생성 port:9000
#main.py로 데이터 요청 port:8000

 

 

2. main.py에서 PUT요청을 위해 auth의 함수를 import 한다.

from auth import get_current_user, get_user_exception
@app.put("/{todo_id}")
async def update_todo(todo_id: int, todo: Todo, user: dict = Depends(get_current_user), db: Session = Depends(get_db)):

    if user in None:
        raise get_user_exception()

    todo_model = db.query(models.Todos)\
        .filter(models.Todos.id == todo_id)\
        .filter(models.Todos.owner_id == user.get("id")).first()

    if todo_model is None:
        raise http_exception()

    todo_model.title = todo.title
    todo_model.description = todo.description
    todo_model.priority = todo.priority
    todo_model.complete = todo.complete

    db.add(todo_model)
    # db.flush()
    db.commit()
    return successful_response(200)

※ todos테이블의 id와 bearer token에 맞는 user의 정보를 받아서 todos 테이블의 데이터를 업데이트한다.

 

 

 

3. todos 테이블 확인

 

 

4. Postman 접속 후 PUT 요청해 보기

새로운 터미널을 열어서 실행
uvicorn main:app --reload

user: codingwithseok / password: test1234! 의 사용자에 대한 todos 테이블의 데이터를 업데이트한다.

※ 사용자에 대한 인증을 위해 bearer token을 반드시 넣어줘야 한다(token을 생성한 이유)

 

Body에 데이터를 넣어 요청을 보낸다. 이때 옵션은 raw / type은 JSON\

status 200 코드를 확인할 수 있다.

 

 

5. 업데이트 전 vs 업데이트 후 데이터 비교

다시 GET 요청을 했을 때 id 1의 데이터가 변경된 것을 볼 수 있다

왼쪽: 변경 하기 전 데이터 / 오른쪽: 변경 하고 난 후 데이터

728x90
SMALL
profile

개발로 자기계발

@김잠봉

틀린부분이나 조언이 있다면 언제든 환영입니다:-)