I am using Azure API Management to my API.
In my API APP, I have one endpoint which requires JWT verification.
I am trying to add the Authorization directly using the API Management, as shown in the following diagram.
.
However, when I add the Bearer Authorization directly and save it, it disappear when I reopen the OPEN API Specification.
Am I adding it to the correct place? or should it go some where else.
BEARER token which I am trying to add:
Bearer:
type: apiKey
name: Authorization
in: header
validate-jwt
policy, but could not we specify it explicitly using theswagger/openApi Spec
? – CoderX