在 FastAPI 中设置 CORS 头

在 FastAPI 中设置 CORS 头

可以使用 fastapi.middleware.cors.CORSMiddleware 来设置 CORS 头信息。

from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware

app = FastAPI()

# 设置允许的源
origins = [
    "http://example.com",
    "https://example.com",
    "http://localhost",
    "http://localhost:8000",
]

# 添加 CORS 中间件
app.add_middleware(
    CORSMiddleware,
    allow_origins=origins,  # 允许的源
    allow_credentials=True,
    allow_methods=["*"],  # 允许的方法
    allow_headers=["*"],  # 允许的头
)

@app.post("/remove_background")
async def remove_background(
    file: Optional[UploadFile] = File(None),
    response: Response = Response(),  # 这里提供默认值
    db: Session = Depends(get_db),
    api_key: Optional[str] = Form(default=None),
    mode: int = Form(default=1, description="处理模式: 1为默认返回二进制; 2为返回base64; 3为通过图片URL返回base64结果"),
    url: Optional[str] = Form(default=''),
):
    # 在这里处理你的逻辑
    # 例如:
    # if mode == 1:
    #     response.body = some_binary_data
    # elif mode == 2:
    #     response.body = some_base64_data
    # elif mode == 3:
    #     response.body = some_base64_data_from_url

    response.headers["access-control-allow-origin"] = "*"
    response.headers["access-control-allow-credentials"] = "true"
    return response

检查代理服务器配置

如果你使用的是 Nginx 作为代理服务器,确保你的配置没有过滤或修改这些头信息。以下是一个示例配置:

server {
    listen 80;
    server_name your_domain.com;

    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # 确保这些头信息被传递
        proxy_set_header Access-Control-Allow-Origin "*";
        proxy_set_header Access-Control-Allow-Credentials "true";
    }
}

总结

通过在 FastAPI 中设置 CORS 中间件和确保代理服务器正确传递头信息,可以解决使用 SwitchyOmega 代理时头信息丢失的问题。确保你的代理配置没有过滤或修改这些头信息,并使用 FastAPI 的 CORS 中间件来统一设置 CORS 头。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值