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

Fully featured framework for fast, easy and documented API development with Flask

Results 103 flask-restplus issues
Sort by recently updated
recently updated
newest added

This may not be an issue but more of a feature clarification: polymorphic fields work on output , but not completely on input data it seems - parent = api.model("parent",...

please help , when i am accessing swagger docs from my api gateway the error console occur ![image](https://user-images.githubusercontent.com/3920127/82720304-7bae9a80-9cdc-11ea-8d74-a3520695d7b2.png)

I am trying to use send_from_directory with RESTPlus and it looks as thought it is ignoring the path I am giving it in the first argument (code greatly simplified down...

bug

**version**: flask-restplus=0.13.0 A **code sample** to reproduce the issue: take this example line https://github.com/noirbizarre/flask-restplus/blob/1fe65ddae4c04315bd88535e3c2eaff381436270/examples/todomvc.py#L14 and replace it by ` 'id': fields.Integer(description='The task unique identifier', example=0),` You will notice, that 0...

I asked this question on StackOverflow ([here](https://stackoverflow.com/questions/60351530/flatting-nested-field-to-array-in-flask-api)) but didn't get any help there. I'm sure that there is a simple answer to this. I'm using `flask_restplus` to build an API....

### **Configuration file** SWAGGER_REQUEST_INTERCEPTOR = "(request) => { // Do something }" SWAGGER_UI_REQUEST_INTERCEPTOR = "(request) => { // Do something }" ### **app.py** ```python app.config.SWAGGER_REQUEST_INTERCEPTOR = "(request) => { //...

bug

I suspect that swagger is using the HTTP Header "Host xxxxx.com" to return the swagger.json file. I can't find anything on the doncumentation to avoid this behavior. ### **Context** _Info:...

bug

I have a data structure with has nesting. I cannot get restplus to create a correct Swagger documentation. I tried ``` ns = api.namespace('calendars', description='Operations related to calendars') availability =...

# Issue Type [x] Bug (Typo) # Steps to Replicate 1. Examine doc/errors.rst. 2. Search for `werkeug`. # Expected Behaviour 1. Should read `werkzeug`.

In production I'd like to be able to hide the documentation and specs for an API. I am currently able to prevent documentation from rendering by creating my API with...

enhancement