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