|
1 |
| -#RESTful API with Python, FastAPI, Pydantic, SQLAlchemyandDocker |
| 1 | +#RESTful API with Python,SQLAlchemy, & FastAPI: AccessandRefresh Tokens |
2 | 2 |
|
3 |
| -###1. RESTful API with Python &FastAPI: AccessandRefreshTokens |
| 3 | +In this article, you'll learn how to secure aFastAPI app by implementing accessandrefresh token functionalities using JSON WebTokens (JWTs). We'll use the FastAPI JWT Auth package to sign, encode and decode the access and refresh JWT tokens. |
4 | 4 |
|
5 |
| -[RESTful API with Python & FastAPI: Access and Refresh Tokens](https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens) |
| 5 | + |
6 | 6 |
|
7 |
| -###2. RESTful API with Python & FastAPI: Send HTML Emails |
| 7 | +##Topics Covered |
8 | 8 |
|
9 |
| -[RESTful API with Python & FastAPI: Send HTML Emails](https://codevoweb.com/restful-api-with-python-fastapi-send-html-emails) |
| 9 | +- Python FastAPI JWT Authentication Overview |
| 10 | +- How to Setup FastAPI with PostgreSQL |
| 11 | +- Setup FastAPI |
| 12 | +- Initialize a Simple FastAPI Server |
| 13 | +- Setting up Environment Variables in FastAPI |
| 14 | +- Connect to the PostgreSQL Docker Container |
| 15 | +- Installing the UUID OSSP PostgreSQL Extension |
| 16 | +- Create Database Models with SQLAlchemy in FastAPI |
| 17 | +- Creating Schemas with Pydantic in FastAPI |
| 18 | +- Password Management with Bcrypt |
| 19 | +- Configure the FastAPI JWT Auth Extension |
| 20 | +- Creating the Authentication Controllers |
| 21 | +- User Registration Controller |
| 22 | +- User Sign-in Controller |
| 23 | +- Refresh Access Token Controller |
| 24 | +- Logout User Controller |
| 25 | +- How to add Protected Routes |
| 26 | +- Create a User Controller |
| 27 | +- Adding the Routes to FastAPI Middleware Pipeline |
| 28 | +- Database Migration with Alembic |
| 29 | +- Testing the FastAPI JSON Web Token API |
10 | 30 |
|
11 |
| -###3. CRUD RESTful API Serverwith Python, FastAPI,and PostgreSQL |
| 31 | +Read the entire article here:[https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens](https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens) |
12 | 32 |
|
13 |
| -[CRUD RESTful API Server with Python, FastAPI, and PostgreSQL](https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql) |
| 33 | +###1. RESTful API with Python,SQLAlchemy, & FastAPI: Access and Refresh Tokens |
| 34 | + |
| 35 | +[RESTful API with Python, SQLAlchemy, & FastAPI: Access and Refresh Tokens](https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens) |
| 36 | + |
| 37 | +###2. RESTful API with Python, SQLAlchemy, & FastAPI: Send HTML Emails |
| 38 | + |
| 39 | +[RESTful API with Python, SQLAlchemy & FastAPI: Send HTML Emails](https://codevoweb.com/restful-api-with-python-fastapi-send-html-emails) |
| 40 | + |
| 41 | +###3. CRUD RESTful API Server with Python, FastAPI, SQLAlchemy, and PostgreSQL |
| 42 | + |
| 43 | +[CRUD RESTful API Server with Python, FastAPI, SQLAlchemy, and PostgreSQL](https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql) |