I was able to use the code in this answer to access a value in a JSON string posted to the server.
If the server gets {"MyKey":"My Value"}
then the value for "MyKey"
can be accessed with request.body.MyKey
.
But the JSON strings that get sent to my server look like this:
[{"id":"1","name":"Aaa"},{"id":"2","name":"Bbb"}]
I could not find a way to access anything in that. How do you do it?