apiman icon indicating copy to clipboard operation
apiman copied to clipboard

Question: Does this tool provide security schemes?

Open inuyasha82 opened this issue 1 year ago • 1 comments

I.e. if i have authenticated API, that uses JWT token, is there a way to have it enabled using apiman?

{
  "openapi": "3.0.1",
  "info": {
    "title": "Example app",
    "description": "Application home page",
    "version": "v2"
  },
  "securitySchemes": {
      "JWT": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "<JWT>"
        }
    }
}

For example having this template, can i have the authorization button on the swagger page? Like in the screenshot below?

image

inuyasha82 avatar Nov 07 '23 13:11 inuyasha82