-
-
Notifications
You must be signed in to change notification settings - Fork 444
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
Support HTTP Request Body extraction #1334
Labels
Comments
Dart is also adding |
4 tasks
maciejwalkowiak
added a commit
that referenced
this issue
Jul 13, 2021
bruno-garcia
added a commit
that referenced
this issue
Jul 14, 2021
maciejwalkowiak
added a commit
that referenced
this issue
Jul 14, 2021
maciejwalkowiak
added a commit
that referenced
this issue
Jul 19, 2021
maciejwalkowiak
added a commit
that referenced
this issue
Jul 20, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This feature exists in other SDKs and is configured like this:
An option named
maxRequestBodySize.
The values are:
If opting-in means the request stream need to be buffered, that should be transparent. Docs can mention this caveat but it's fair to assume that if you're looking to get the request body included in error
s, you're not running a server that's about to tip over and you can afford having the payload buffered.
The code can depend on a simple HTTP abstraction to get the data.. That was needed in .NET to support both ASP.NET and ASP.NET Core.
Also: 1, 2
This feature was requested in #331 particularly for
application/json
.The text was updated successfully, but these errors were encountered: