We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the resource ID used for retrieving audit events includes a period (.) the audit endpoint incorrectly reports a 404 Not Found response.
.
404 Not Found
Example for user with ID my.user:
my.user
"GET /api/audit/roles/cucumber%3Auser%3Amy.user?limit=10" 404
However, periods in the ID work as expected for other Conjur endpoints:
"GET /api/roles/cucumber/user/my.user" 200
Also, encoding the period as %2E routes correctly, implying that the issue is the URL parsing:
%2E
"GET /api/audit/roles/cucumber%3Auser%3Amy%2Euser?limit=10" 200
The audit API URL with the unencoded period returns the correct response code and data.
The text was updated successfully, but these errors were encountered:
micahlee
Successfully merging a pull request may close this issue.
Problem Description
When the resource ID used for retrieving audit events includes a period (
.
) the audit endpoint incorrectly reports a404 Not Found
response.Example for user with ID
my.user
:However, periods in the ID work as expected for other Conjur endpoints:
Also, encoding the period as
%2E
routes correctly, implying that the issue is the URL parsing:Expected Outcome:
The audit API URL with the unencoded period returns the correct response code and data.
The text was updated successfully, but these errors were encountered: