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
Sorry guys I forgot whether the filters MUST be case sensitive or not.
The following one DOES NOT work.
?filter=username eq "leodido@example.com" AND password eq "3d$h33ran"
The server returns:
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:Error" ], "status": 400, "scimType": "invalidFilter", "detail": "Filter is invalid: syntax error at character 33, mismatched input ' ' expecting <EOF>" }null
(notice the null, there is somewhere a return missing in the error check conditions within the server, too).
Rather the following one works:
?filter=username eq "leodido@example.com" and password eq "3d$h33ran".
?filter=username eq "leodido@example.com" and password eq "3d$h33ran"
The text was updated successfully, but these errors were encountered:
I believe the error it's given by "AND", it should be lowercase
Sorry, something went wrong.
@samechelon I know the error cause is the uppercase operator. Infact I was asking if it's right that it gives an error or not?
Reformulating: the operators HAVE TO be lowercase by spec?
Attributes names and attribute operators used in filter are case insensitive (refs). So this is a bug.
alelb
No branches or pull requests
Sorry guys I forgot whether the filters MUST be case sensitive or not.
The following one DOES NOT work.
?filter=username eq "leodido@example.com" AND password eq "3d$h33ran"
The server returns:
(notice the null, there is somewhere a return missing in the error check conditions within the server, too).
Rather the following one works:
?filter=username eq "leodido@example.com" and password eq "3d$h33ran"
.The text was updated successfully, but these errors were encountered: