gpt4 book ai didi

python-3.x - FastAPI 屏蔽字段

转载 作者:行者123 更新时间:2023-12-05 02:02:16 25 4
gpt4 key购买 nike

我在 FastAPI web site 上学习有关安全的教程

以具有以下端点结束:

@app.post("/token", response_model= Token)
async def login(form_data: OAuth2PasswordRequestForm = Depends()):
user = authenticate_user(fake_users_db, form_data.username, form_data.password)
if not user:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Incorrect username or password",
headers={"WWW-Authenticate": "Bearer"},
)
access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES)
access_token = create_access_token(
data={"sub": user.username}, expires_delta=access_token_expires
)
return {"access_token": access_token, "token_type": "bearer"}

导致以下招摇:

enter image description here

我的问题:有没有一种简单的方法来屏蔽密码字段?所以我没有看到纯文本?就像我们可以使用授权按钮一样。

最佳答案

您可以使用 Pydantic 的 SecretStr。它只是将 {"format": "password"} 添加到您的 OpenAPI 模式。

from fastapi import FastAPI, Depends
from pydantic import BaseModel, SecretStr


class User(BaseModel):
username: str
password: SecretStr

app = FastAPI()


@app.post("/user")
async def create_user(user: User = Depends()):
print(user.password.get_secret_value())

您将拥有这个,有关更多信息,请参阅 documentation

enter image description here

关于python-3.x - FastAPI 屏蔽字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65933711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com