pro-search-api / utils /auth_x.py
vhr1007
x_api_key new end point
bcd2179
raw
history blame
301 Bytes
from fastapi import Header, HTTPException
def x_api_key_auth(x_api_key: str = Header(...)):
expected_api_key = "your_expected_api_key" # Replace with your actual API key
if x_api_key != expected_api_key:
raise HTTPException(status_code=401, detail="Invalid API Key")
return True