Add Support for bearer scheme in http securitySchemes

Issue #180 resolved
Former user created an issue

The JWT Bearer Sample from https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#security-scheme-object shows the securityScheme

{
  "type": "http",
  "scheme": "bearer",
  "bearerFormat": "JWT",
}

In SecurityValidator#validateSingleSecurityParameter it looks like HTTP only supports checking basic authentication and won't look for the Authorization header with the Bearer token.

Can support please be added for this?

Comments (1)

  1. Log in to comment