If my JSON object looks something like this:
{
"weather:{
"sunny": "yes"
"wind": "48mph"
"location":{
"city": "new york"
"zip": "12345"
}
}
"rating": "four stars"
}
How would I access the city name? I can use optString to get all of "weather" or "rating" but how do I get info that's inside that?