I tried your solution but at the end i get empty list. after debugging i notice that jsonObject.get(“photo”) return a null. Maybe due to casting jsonArray to jsonObject. However, calling jsonObject.getAsJsonArray(“photo”) fix the problem.
val jsonArray = jsonObject.getAsJsonArray(“photo”)
EDIT 2:
another issue which is getting “photo” memeber before “photos” and other thing is using !! which can lead to serious problem like NullPointerException
val jsonObject = json?.asJsonObject?.get(“photos”)?.asJsonObject
val jsonArray = photoJsonObject?.getAsJsonArray(“photo”)?.asJsonArray
But the “val photoResponse: PhotoResponse? = flickrResponse?.photos” photos is showing in red??? PhotoDeserializer dosen’t reference any photos variable. Any help please because this is where I am stuck.
I just used the simple photoJsonObject = json?.asJsonObject but what I don’t know is if it returned the “photos” object or “photo” JSON array because I declared a lateinit var property named photos in the custom deserialization to reference it from FlickrFetchr
For some reason I receives null list of GalleryItem when using your snippet.
It seems to me that Gson does not know how to work if you skip the beginning of a json.
val jsonObject = json?.asJsonObject?.getAsJsonObject("photos")
return Gson().fromJson(jsonObject, PhotoResponse::class.java)
thank you for trying my code. i forgot how i did it that time… i wont do this work this way now…
usually i create an object (data class) and let the code fit in it directly.
in addition that, since we are working in Kotlin, people are moving from retrofit to ktor…