How to tune flasgger in order to use basic authentication in sending requests

3k Views Asked by At

I try to use flasgger for my simple RESTful API. The API requireds the authentication/authorization and uses the basic authentication to perform any query.

There is really good documentation about Basic Authentication in swagger.io But how can those settings be implemented in flassger? I've tried to used template to set securityDefinitions into swaggler, but the attempt hasn't been successful yet.

UPD. Probably the issue hasn't been resolved yet. Flasgger doesnt support basic auth #103

2

There are 2 best solutions below

1
On BEST ANSWER

I've resolved the issue of authentication adding the next code:

swagger_template = {
    # Other settings

    'securityDefinitions': {
        'basicAuth': {
            'type': 'basic'
        }
    },

    # Other settings
}

app = Flask(__name__)
Swagger(app, swagger_config, template=swagger_template)
0
On

Thanks for Dimaf's answer, helped me a lot. Just want to update the new version, in case someone else run into the same problem.

For Swagger 3.0, the config has been updated to the following (this example is for bearer authorization):

swagger_template = {
    "components": {
        "securitySchemes": {
            "BearerAuth": {
                "type": "http",
                "scheme": "bearer",
                "bearerFormat": "JWT",
                "in": "header",
            }
        }
    }
}