I was reading previously similar topics but I can't figure out a solution. I'm sorry if I'm redundant. I’m developing an APP that looks for a ISBN number at Google Books APIs and storages the book info title, authors, cover image link in a dictionary.
What should I do to get the data from “title”, “authors” and “smallThumbnail" labels. The only value I can read is items but I can’t access the nested labels.
{
"items": [
{
"volumeInfo": {
"title": "Tú serás mi muerte / You'll Be the Death of Me",
"authors": [
"Karen M. McManus"
],
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=gmSREAAAQBAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api"
}
}
}
]
}
and for the above response design blocks like this
I was totally stuck. It works! Thank you so much!
I have been trying to use "list be walking key path" without success. I followed your instructions and I see progress!