728x90
1. 각각의 사용자 JWT 생성
uvicorn auth:app --reload --port 9000
username: codingseok / pass: test1234!
username: exampleuser / pass: test1234!
2. Postman 접속 후 각각 JWT 입력
uvicorn main:app --reload
POST API로 todos 테이블에 1번 사용자에 해당하는 데이터를 생성
{
"title": "",
"description": "",
"priority": "",
"complete": false
}
POST API로 todos 테이블에 2번 사용자에 해당하는 데이터를 생성
{
"title": "",
"description": "",
"priority": "",
"complete": false
}
3. 데이터 생성 확인
4. pgAdmin 4 확인
# 1번 사용자와 관계된 데이터를 찾고 싶다면?
select * from todos where owner_id = 1;
# 2번 사용자와 관계된 데이터를 찾고 싶다면?
select * from todos where owner_id = 2;
728x90
SMALL
'Develop > FastAPI' 카테고리의 다른 글
FastAPI Connect FastAPI to MySQL - 62 (0) | 2023.01.15 |
---|---|
FastAPI Mysql Create Database Tables - 61 (0) | 2023.01.15 |
FastAPI PostgreSQL Connect to FastAPI - 59 (0) | 2023.01.15 |
FastAPI PostgreSQL Create Database Table - 58 (0) | 2023.01.15 |
FastAPI로 Postman CRUD (0) | 2023.01.11 |