From b8ba81b698cf782752f16ccebbc388e53baca387 Mon Sep 17 00:00:00 2001 From: alv2017 Date: Sun, 23 Mar 2025 00:36:05 +0200 Subject: [PATCH] tutorial/middleware.md: updates and corrections added. --- docs/en/docs/tutorial/middleware.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/en/docs/tutorial/middleware.md b/docs/en/docs/tutorial/middleware.md index 5f67eaf8c..02daaaa64 100644 --- a/docs/en/docs/tutorial/middleware.md +++ b/docs/en/docs/tutorial/middleware.md @@ -2,7 +2,13 @@ You can add middleware to **FastAPI** applications. -A "middleware" is a function that works with every **request** before it is processed by any specific *path operation*. And also with every **response** before returning it. +In this tutorial we will discuss how to add a custom `http` middleware to your FastAPI applications. + +The `http` middleware is designed to work with HTTP protocol, and it is responsible for handling of HTTP requests and responses. + +## How `http` middleware works? + +The `http` middleware works with every **request** before it is processed by any specific *path operation*. And also with every **response** before returning it. * It takes each **request** that comes to your application. * It can then do something to that **request** or run any needed code. @@ -65,16 +71,13 @@ Here we use