Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13891

How can I pass data from API endpoint (request) to middleware in FastAPI?

$
0
0

I am learning FastAPI and have encountered a scenario where I am stuck. I want to implement a logic where every API endpoint will have its API Credits (int) which I am going to use in HTTP middleware to deduct credits from the user's balance. I have searched a lot but have been unable to get any solution. Can anyone help me to achieve this? I am providing a pseudo-code to explain what I am trying to achieve.

@app.middleware("http")async def add_process_time_header(request: Request, call_next):    # here I want to read API credits for request    print(request.api_credit)    response = await call_next(request)    return response@app.post("/myendpoint1")async def myendpoint1():    # define api credit for this endpoint    api_credit = 2    return {"message": "myendpoint"}@app.post("/myendpoint2")async def myendpoint2():    # define api credit for this endpoint    api_credit = 5    return {"message": "myendpoint2"}

Viewing all articles
Browse latest Browse all 13891

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>