You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we provide access to the request body via context.req.body. For convenience, if the request is of content-type application/json we parse the body into an object. However, in some cases the raw unparsed body is required. See issue here.
We should probably make this available as context.req.rawBody
The text was updated successfully, but these errors were encountered:
Currently we provide access to the request body via
context.req.body
. For convenience, if the request is of content-type application/json we parse the body into an object. However, in some cases the raw unparsed body is required. See issue here.We should probably make this available as
context.req.rawBody
The text was updated successfully, but these errors were encountered: