Get Data out of a nested JSON-Array

Long Story Short...

I have this:

{"Benutzer":{"Benutzername":"App Debug","Level":"4"},"Links":{"Eigene Links":[{"ID":"DprIEA","Ziel":"https:\/\/www.youtube.com\/","Ersteller":"App Debug","Aufrufe":"000052"},{"ID":"SjIonM","Ziel":"https:\/\/www.amazon.de\/","Ersteller":"App Debug","Aufrufe":"000340"},{"ID":"w68lTP","Ziel":"https:\/\/www.netflix.com\/browse","Ersteller":"App Debug","Aufrufe":"000120"},{"ID":"ZUVy3b","Ziel":"https:\/\/zattoo.com\/guide\/favorites","Ersteller":"App Debug","Aufrufe":"000003"}]}}

And i want something like this:

ID: DprIEA
Ziel: https://www.youtube.com/
Ersteller: App Debug
Aufrufe: 000052

ID: SjIonM
Ziel: https://www.amazon.de/
Ersteller: App Debug
Aufrufe: 000340

ID: w68lTP
Ziel: https://www.netflix.com/browse
Ersteller: App Debug
Aufrufe: 000120

ID: ZUVy3b
Ziel: https://zattoo.com/guide/favorites
Ersteller: App Debug
Aufrufe: 000003

I get this from a Webserver and try to use the Content of this JSON.
I got a JSON-String with less "levels" to work, but i fail with this one.

a lot of examples for how to parse json string, please search the community first.

I got my problem

There was an list element i tried to parse as a dictionary

Solved

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.