flask-restx icon indicating copy to clipboard operation
flask-restx copied to clipboard

Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask

Results 208 flask-restx issues
Sort by recently updated
recently updated
newest added

Getting `werkzeug.routing.BuildError` otherwise

Resolves #428 in the simplest way: Just updating the draft version.

I am using flask-restx 0.5.1. I am using fields.nested() in my program, but both below scenarios have same problem: when I go to swagger-ui, complete the field and click on...

According to [the documentation](https://flask-restx.readthedocs.io/en/latest/marshalling.html?highlight=json%20schema#define-model-using-json-schema), specifying schemas to validate against using [JSON Schema Draft 4](https://json-schema.org/specification-links.html#draft-4) is supported. There have been newer versions of the JSON Schema standard since Draft 4 with...

enhancement

Fixes #426 pallets/werkzeug#2352 changed the default value of `Response.autocorrect_location_header` from `True` to `False` in Werkzeug >= 2.1.0. `tests/legacy/test_api_legacy.py::APITest::test_redirect` depended upon `Response.autocorrect_location_header` being `True`. Change `test_redirect()` to explicitly set `Response.autocorrect_location_header` to...

pallets/werkzeug#2352 changed the default value of `Response.autocorrect_location_header` from `True` to `False` in Werkzeug >= 2.1.0. `tests/legacy/test_api_legacy.py::APITest::test_redirect` currently depends upon `Response.autocorrect_location_header` being `True`. ### **Repro Steps** (if applicable) 1. With Werkzeug...

bug

**Is your feature request related to a problem? Please describe.** The Swagger UI somewhat recently added syntax highlighting to the docs page for json responses. I believe this appeared with...

enhancement

I wanted to serve swagger docs statics at different url prefix than `/swaggerui/` at the root. Currently it's hardcoded in https://github.com/python-restx/flask-restx/blob/master/flask_restx/apidoc.py#L24 making it impossible to serve it at e.g. `/api/swaggerui`

enhancement

`flask_restplus` currently outputs the swagger.json in the old "Swagger 2.0" format. Are there any plans to also support the OpenAPI 3.x specification? OpenAPI 3.x has better support for different authentication...

enhancement

Hello Team, Recently I am working on oidc auth for my flask restx app. The most examples I see online about flask-oidc is just based on a barebone flask app....

question