-
Notifications
You must be signed in to change notification settings - Fork 4
Query string parameters only accept string type declaration #64
New issue
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
Comments
albertocsouto
added a commit
that referenced
this issue
May 9, 2025
It's a complex one, we have to convert the parsed value before inject to validator. What happens now is the validator always receive a binary string. For example: ParameterModuleBool:is_valid(<<"true">>) or ParameterModuleNumber:is_valid(<<"1">>) |
albertocsouto
added a commit
that referenced
this issue
May 9, 2025
I'm trying to implement the default serialization way proposed by the spec:
|
albertocsouto
added a commit
that referenced
this issue
May 12, 2025
albertocsouto
added a commit
that referenced
this issue
May 13, 2025
albertocsouto
added a commit
that referenced
this issue
May 13, 2025
albertocsouto
added a commit
that referenced
this issue
May 14, 2025
albertocsouto
added a commit
that referenced
this issue
May 20, 2025
albertocsouto
added a commit
that referenced
this issue
May 20, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Query string parameters not declared as string always fail, producing a 400 error. This is a sample:
Currently the only workaround possible is to declare as string all the parameters and converting them in the callback module.
The text was updated successfully, but these errors were encountered: