Why do I get “The passed json is nested too deeply.” when consuming the API?
The locize API generally only accepts flat json.
{
"new": {
"key": "default value"
},
"another": {
"existing": {
"key": "another changed value",
"phrase": "another value"
}
}
}{
"new.key": "default value",
"another.existing.key": "another changed value",
"another.existing.phrase": "another value"
}optional context (the exception):
Last updated