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
When sending a request with the header content-type: application/json with a body that has any kind of valid nested objects, the body is not parsed entirely.
For example:
a POST with content-type application/json in the header and body of:
{
"ids": [1,2,3]
}
Would be parsed by Amber as:
params["ids"] # "[1,2,3]" <- with a value as a type of String
When sending a request with the header
content-type: application/json
with a body that has any kind of valid nested objects, the body is not parsed entirely.For example:
a POST with
content-type application/json
in the header and body of:Would be parsed by Amber as:
Would be parsed by Amber as:
The expected result is that for this type of request that the entire request body be accessible as a JSON object.
The text was updated successfully, but these errors were encountered: