zebra-f
‎03-24-2023
Making moves
since ‎03-23-2023

User Statistics

  • 1 Posts
  • 0 Ideas Submitted
  • 0 Kudos given
  • 0 Kudos received

User Activity

I tested it both on Django server and FastAPI/Uvicorn. I will be using FastAPI/Uvicorn in this example as it is the simplest one (notice no CORS headers):# main.py from fastapi import FastAPI app = FastAPI() @app.get("/") async def root(): retu...