I get from the json site which contains a bunch of arrays and properties by type =>
{ "Status":true "Data":{...} "INFO":["info1", "info2", "info3"] } I'm interested in the INFO array, which can contain from 1 to 5 lines. How can I get it separately, ignore other data, such as status and data?
"INFO":{info1, info2, info3}is not an array. This is an object with info1, info2, info3 fields that have not been set. I'm not sure that this is a valid json - tym32167