Peter Doggart
Peter Doggart
#59 has been open for a long time, probably best to bump the conversation over there. `flask-restx` is only minimally maintained, so unfortunately I think any big changes such as...
Can you debug a request on the flask app and grab the `X-Forwarded-*` headers to see what is being set during the forwarding?
I can't dig into the `flask-restx` code on this right now to investigate the source of the bug, but this is definitely related to the nested model not being registered...
Flask-restx was written before Flask >2.0.0 introduced nested blueprints and therefore the `Api` class makes assumptions about the URLs and endpoints inside a Blueprint. I can't see any easy work...
@SebastianSulzbacherEWE It's mentioned briefly in the [quick start docs](https://flask-restx.readthedocs.io/en/latest/quickstart.html#a-minimal-api). Due to how `flask-restx` builds URLs, the `Api` object always creates the `/` route if it doesn't exist when the `Api`...
I don't think this is possible since you are effectively telling the routing that both `/notification` and `/notification/` should use these methods, regardless of it you actually pass or use...
@viveksahu56722 Did you install `flask-restx` using pip? It sounds like the swagger components are not installed. If you clone the project directly from github, you need to have Invoke and...
It randomly appears whilst the application is running? How is the application deployed?
The browser part of `flask-restx` is provided externally by npm `swagger-ui-dist` and not by anything inside `flask-restx` which purely generates the `swagger.json` file for the API. I suspect that given...
See https://swagger.io/docs/open-source-tools/swagger-ui/usage/version-detection/ If you are using firefox, press Ctrl+Shift+K whilst viewing your swagger docs, then enter `JSON.stringify(versions)` on the console. It should echo something like: ```json {"swaggerUi":{"version":"3.52.0","gitRevision":"gee40b00","gitDirty":true,"buildTimestamp":"Mon, 09 Aug 2021...