thiagofdso
2 years agoNew Member
Configure default value for apikeys
I am using the following securityscheme, i would like to know if there is a way to configure a default value for each apikey. It is a development environment and i want to make it easier to use swagger and test the apis.
"securitySchemes": {
"app_id": {
"type": "apiKey",
"name": "app_id",
"in": "query"
},
"app_key": {
"type": "apiKey",
"name": "app_key",
"in": "query"
}
}