diff --git a/docs/src/path_params/tutorial003.py b/docs/src/path_params/tutorial003.py index ba67bb6f9..5f0aa0923 100644 --- a/docs/src/path_params/tutorial003.py +++ b/docs/src/path_params/tutorial003.py @@ -1,10 +1,13 @@ -from uuid import UUID - from fastapi import FastAPI app = FastAPI() -@app.get("/items/{item_id}") -async def read_item(item_id: UUID): - return {"item_id": item_id} +@app.get("/users/me") +async def read_user_me(): + return {"user_id": "the current user"} + + +@app.get("/users/{user_id}") +async def read_user(user_id: str): + return {"user_id": user_id} diff --git a/docs/src/security/tutorial004.py b/docs/src/security/tutorial004.py index 31895c5cb..edbac86f6 100644 --- a/docs/src/security/tutorial004.py +++ b/docs/src/security/tutorial004.py @@ -1,7 +1,7 @@ from datetime import datetime, timedelta import jwt -from fastapi import Depends, FastAPI, Security, HTTPException +from fastapi import Depends, FastAPI, HTTPException, Security from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm from jwt import PyJWTError from passlib.context import CryptContext diff --git a/docs/tutorial/path-params.md b/docs/tutorial/path-params.md index 34563b28c..d795b76e4 100644 --- a/docs/tutorial/path-params.md +++ b/docs/tutorial/path-params.md @@ -98,6 +98,24 @@ You can use the same type declarations with `str`, `float`, `bool` and many othe These are explored in the next chapters of the tutorial. + +## Order matters + +When creating *path operations*, you can find situations where you have a fixed path. + +Like `/users/me`, let's say that it's to get data about the current user. + +And then you can also have a path `/users/{user_id}` to get data about a specific user by some user ID. + +Because path operations are evaluated in order, you need to make sure that the path for `/users/me` is declared before the one for `/users/{user_id}`: + +```Python hl_lines="6 11" +{!./src/path_params/tutorial003.py!} +``` + +Otherwise, the path for `/users/{user_id}` would match also for `/users/me`, "thinking" that it's receiving a parameter `user_id` with a value of `"me"`. + + ## Recap With **FastAPI**, by using short, intuitive and standard Python type declarations, you get: