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 232 flask-restx issues
Sort by recently updated
recently updated
newest added

pallets/werkzeug#2339 changed the behavior of `Request.get_json()` and the `Request.json` property to raise a `BadRequest` if `Request.get_json()` is called, or the `Request.json` property is accessed and the content type is not...

bug

I have a resource called `Profile` which nests a list of `Port` resources like so: ```json { "profile": "abcd" "ports": [ { "port": "5687" "state": "state" "protocol": "protocol" "direction": "direction"...

question

Hi, After adding a namespace and route/endpoint programmatically on startup, my app has a need to remove endpoints (namespaces?) under certain conditions. How can I do this with restx, such...

question

### Vulnerability report https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29361 Improper parsing of HTTP requests in Pallets Werkzeug v2.1.0 and below allows attackers to perform HTTP Request Smuggling using a crafted HTTP request with multiple requests...

bug

The optional function createApiModel was add to reduce typing time.

**Is your feature request related to a problem? Please describe.** Currently when using oauth the redirect URL is hardcoded here: https://github.com/python-restx/flask-restx/blob/master/flask_restx/templates/swagger-ui.html#L55 The included `oauth2-redirect.html` is fine unless you are implementing...

enhancement

Currently an oauth redirect URL is hardcoded as `oauth2-redirect.html`, this works fine for example applications but for production apps you probably want to specify your own URL so you can...

I recently changed from flask_restplus to flask_restx since I read it is deprecated. However, since I changed the Swagger UI has this layout issue here which it did not have...

bug

Refering to https://github.com/noirbizarre/flask-restplus/issues/464 Are there any plans to merge https://github.com/noirbizarre/flask-restplus/pull/465 ? It would be awesome if it could be disabled by app config as well, since that seems to be...

enhancement

**Ask a question** Is it possible to auto generate the model of flask-restx by parsing the flask_sqlalchemy object? Example class of SQLAlchemy object. The Basemodel is a blueprint with fields...

question