chore: fix tests

This commit is contained in:
Anoop M D 2024-02-27 01:39:34 +05:30
parent 1cf8a2f3f1
commit b375620875
2 changed files with 11 additions and 9 deletions

View File

@ -46,12 +46,13 @@ auth:digest {
}
auth:oauth2 {
grantType: authorization_code
grant_type: authorization_code
callback_url: http://localhost:8080/api/auth/oauth2/ac/callback
authorization_url: http://localhost:8080/api/auth/oauth2/ac/authorize
access_token_url: http://localhost:8080/api/auth/oauth2/ac/token
client_id: client_id_1
client_secret: client_secret_1
auth_url: http://localhost:8080/api/auth/oauth2/ac/authorize
callback_url: http://localhost:8080/api/auth/oauth2/ac/callback
access_token_url: http://localhost:8080/api/auth/oauth2/ac/token
scope: read write
}
body:json {

View File

@ -66,11 +66,12 @@
},
"oauth2": {
"grantType": "authorization_code",
"client_id": "client_id_1",
"client_secret": "client_secret_1",
"auth_url": "http://localhost:8080/api/auth/oauth2/ac/authorize",
"callback_url": "http://localhost:8080/api/auth/oauth2/ac/callback",
"access_token_url": "http://localhost:8080/api/auth/oauth2/ac/token"
"clientId": "client_id_1",
"clientSecret": "client_secret_1",
"authorizationUrl": "http://localhost:8080/api/auth/oauth2/ac/authorize",
"callbackUrl": "http://localhost:8080/api/auth/oauth2/ac/callback",
"accessTokenUrl": "http://localhost:8080/api/auth/oauth2/ac/token",
"scope": "read write"
}
},
"body": {