|
|
@ -1,4 +1,4 @@ |
|
|
|
from fastapi import FastAPI, Depends, HTTPException |
|
|
|
from fastapi import Depends, FastAPI, HTTPException |
|
|
|
from fastapi.security.api_key import APIKeyHeader |
|
|
|
|
|
|
|
# Replace with your actual API key, ideally injected as an Environment Variable |
|
|
@ -11,13 +11,16 @@ api_key_header = APIKeyHeader( |
|
|
|
description="API Key required to access secure endpoints.", |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
def verify_api_key(api_key: str = Depends(api_key_header)): |
|
|
|
if api_key != API_KEY: |
|
|
|
raise HTTPException(status_code=401, detail="Invalid API Key") |
|
|
|
|
|
|
|
|
|
|
|
# Apply it for all endpoints |
|
|
|
app = FastAPI(dependencies=[Depends(verify_api_key)]) |
|
|
|
|
|
|
|
|
|
|
|
# Apply it for specific endpoints |
|
|
|
@app.get("/secure-data") |
|
|
|
def secure_endpoint(api_key: str = Depends(verify_api_key)): |
|
|
|