gpt4 book ai didi

python - 如何限制 FastAPI 请求 header 中的内容类型

转载 作者:行者123 更新时间:2023-12-04 07:30:57 26 4
gpt4 key购买 nike

我是 FastAPI 框架的新手,我想用“application/vnd.api+json”来限制我的请求 header 内容类型,但我无法找到一种方法来配置我的内容类型快速 API 路由实例。

任何信息都会非常有用。

最佳答案

更好的方法是声明依赖:

from fastapi import FastAPI, HTTPException, status, Header, Depends


app = FastAPI()


def application_vnd(content_type: str = Header(...)):
"""Require request MIME-type to be application/vnd.api+json"""

if content_type != "application/vnd.api+json":
raise HTTPException(
status.HTTP_415_UNSUPPORTED_MEDIA_TYPE,
f"Unsupported media type: {content_type}."
" It must be application/vnd.api+json",
)


@app.post("/some-path", dependencies=[Depends(application_vnd)])
def some_path(q: str = None):
return {"result": "All is OK!", "q": q}

所以它可以在需要时重复使用。

对于成功的请求,它将返回如下内容:

{
"result": "All is OK!",
"q": "Some query"
}

对于像这样不成功的事情:

{
"detail": "Unsupported media type: type/unknown-type. It must be application/vnd.api+json"
}

关于python - 如何限制 FastAPI 请求 header 中的内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67932330/

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