|
from fastapi import FastAPI , Request, APIRouter, Depends, HTTPException |
|
from starlette.middleware.cors import CORSMiddleware |
|
from routers import receipt_radar_callback_router |
|
|
|
app = FastAPI() |
|
|
|
app.add_middleware( |
|
CORSMiddleware, |
|
allow_origins=["*"], |
|
allow_credentials=True, |
|
allow_methods=["DELETE", "GET", "POST", "PUT"], |
|
allow_headers=["*"], |
|
) |
|
|
|
app = FastAPI() |
|
|
|
@app.get("/test") |
|
async def test(request:Request): |
|
body = await request.json() |
|
print(body.get('refresh_token')) |
|
print("URL endpoint hit !!") |
|
return {"response":"URL HIT!!"} |
|
|
|
app.include_router(receipt_radar_callback_router.router) |