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
ResponseDetective should support multipart/form-data requests, deserializing each data segment as if they were at the root level.
multipart/form-data
The output of body section should provide information on all segments:
Segment 0 ├─ Headers │ Content-Type: image/png │ Content-Disposition: form-data; name="foo"; filename="image.png" ├─ Body │ 10px × 10px image Segment 1 ├─ Headers │ Content-Disposition: form-data; name="bar" ├─ Body │ baz Segment 2 ├─ Headers │ Content-Type: application/octet-stream │ Content-Disposition: form-data; name="qux" ├─ Body │ <none>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ResponseDetective should support
multipart/form-data
requests, deserializing each data segment as if they were at the root level.The output of body section should provide information on all segments:
The text was updated successfully, but these errors were encountered: