I am trying to add a on Security Schemes my docs page
offical page is below
I tryied add code below to my server.py
app.ext.openapi.add_security_scheme("api_key", "apiKey")
app.ext.openapi.secured()
but nothing happened ,it still can access http://0.0.0.0:8000/py/docs without auth
I can’t figure out why. I did as the document says
Is there something i have miss?