I'm using FastAPI and I want the /redoc page to not display the Download button.
I know that users will still be able to download the specification, but I need to hide this button.
FastApi automatically generates /redoc, how can I do this?
I'm using FastAPI and I want the /redoc page to not display the Download button.
I know that users will still be able to download the specification, but I need to hide this button.
FastApi automatically generates /redoc, how can I do this?
Copyright © 2021 Jogjafile Inc.
So, there is an option in redoc to hide the download button, we just have to get it in from FastAPI. There doesn't really seem to be any way to pass configuration into Redoc from FastAPI. However, what you can do is override the static files themselves, so by copying the
get_redoc_html
function fromfastapi.openapi.docs
, we can make the small modification of<redoc spec-url="{openapi_url}">
to<redoc spec-url="{openapi_url}" hide-download-button>
, adding thehide-download-button
attribute.All in all the code becomes