Will Warren
Results
61
comments of
Will Warren
I used this python code ```python from fastapi import FastAPI, Request app = FastAPI() @app.post("/") async def read_body(request: Request): body = await request.json() print(body) return {"received": body} ``` And used...