0

I don't know how to log all the API calls like API name, API call time, API call success/fail status into my sqlite3 database. Please help me I have no idea about this.

asdf_lkjh
  • 3
  • 4

1 Answers1

0

You can try with this Stack Overflow question. It creates a middleware which is a layer that interacts with every incoming request and every returning response. It can be used to perform certain action for incoming request - in this case save request details to the database.