Hi All,
I want to know about the authorization in swagger.
I want my apis to lock until I do some authentication. As soon as the authentication is done, APIs should be unlocked to use.
How can I achieve this?
I have tried security definiions inside swagger like this-
"securityDefinitions": {
"JWT": {
"type": "apiKey",
"name": "Authorization",
"in": "body"
}
After this, authorize button comes but how to proceed further. Please help