progress on JWT

This commit is contained in:
lennyaiko
2025-04-03 17:54:29 +01:00
parent ec2ec07d60
commit a5f3119cdc
4 changed files with 23 additions and 8 deletions
+7 -1
View File
@@ -182,12 +182,18 @@
"basicAuth": {
"type": "http",
"scheme": "basic"
},
"bearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"security": [
{
"basicAuth": []
"basicAuth": [],
"bearerAuth": []
}
]
}
@@ -1,11 +1,6 @@
{
"type": "object",
"properties": {
"access_token": {
"type": "string",
"example": "access_token"
}
},
"properties": {},
"xml": {
"name": "AuthorizeRefreshRequest"
}