-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed as not planned
Labels
lifecycle/rottenDenotes an issue or PR that has aged beyond stale and will be auto-closed.Denotes an issue or PR that has aged beyond stale and will be auto-closed.
Description
Describe the bug
OpenidApi and WellKnownApi have coded the wrongLocalPath.
String localVarPath = "/openid/v1/jwks/";
and String localVarPath = "/.well-known/openid-configuration/";
The last "/" generate an 403 Response.
I have remove Last "/" in both file and works fine
Client Version
15.0.1
Java Version
Java 17
To Reproduce
httpStatus:403
curl --cacert ${CACERT} --header "Authorization: Bearer ${TOKEN}" -X GET ${APISERVER}/.well-known/openid-configuration/
httpStatus:200
curl --cacert ${CACERT} --header "Authorization: Bearer ${TOKEN}" -X GET ${APISERVER}/.well-known/openid-configuration
Metadata
Metadata
Assignees
Labels
lifecycle/rottenDenotes an issue or PR that has aged beyond stale and will be auto-closed.Denotes an issue or PR that has aged beyond stale and will be auto-closed.