app.py from fastapi import FastAPI, Cookie app = FastAPI() @app.get('/profile') def profile(name = Cookie(None)): return {'name': name}
確定! 回上一頁