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
Setting up a route for a PUT request with a body will always fail to match the body.
This is because the PUT body data is keyed on the request with "content" and not "postData".
Line 34 of stub-http.internal.spec needs to use the method to determine the correct key.
The text was updated successfully, but these errors were encountered:
Fix for issue johanhaleby#16 with failure to match body when PUT request
dcb082d
It appears that a PATCH request also has some problems with the body not coming through at all. Perhaps this is a limitation of NanoHttpd?
Sorry, something went wrong.
I think it's a limitation of NanoHttpd unfortunately :(
Fix for issue #16 with failure to match body when PUT request (#17)
1c83731
Co-authored-by: Russell Wilson <russell.wilson@cim.io>
No branches or pull requests
Setting up a route for a PUT request with a body will always fail to match the body.
This is because the PUT body data is keyed on the request with "content" and not "postData".
Line 34 of stub-http.internal.spec needs to use the method to determine the correct key.
The text was updated successfully, but these errors were encountered: