Im currently trying to parse this String into my program with the API from http://www.newtonsoft.com/json/help/html/Introduction.htm
{
"193461232": [
{
"name": "Master Yi's Pyromancers",
"tier": "GOLD",
"queue": "RANKED_SOLO_5x5",
"entries": [
{
"playerOrTeamId": "193461232",
"playerOrTeamName": "wamborambo",
"division": "V",
"leaguePoints": 58,
"wins": 109,
"losses": 104,
"isHotStreak": false,
"isVeteran": false,
"isFreshBlood": false,
"isInactive": false
}
]
},
{
"name": "Elise's Masterminds",
"tier": "BRONZE",
"queue": "RANKED_TEAM_3x3",
"entries": [
{
"playerOrTeamId": "TEAM-4f44680-9f2b-11e4-8954-c81f66db8bc5",
"playerOrTeamName": "KidsClub",
"division": "IV",
"leaguePoints": 63,
"wins": 6,
"losses": 8,
"isHotStreak": false,
"isVeteran": false,
"isFreshBlood": false,
"isInactive": false
}
]
},
{
"name": "Elise's Horde",
"tier": "BRONZE",
"queue": "RANKED_TEAM_5x5",
"entries": [
{
"playerOrTeamId": "TEAM-4f457640-9f2b-11e4-8954-c81f66db8bc5",
"playerOrTeamName": "KidsClub",
"division": "I",
"leaguePoints": 28,
"wins": 6,
"losses": 4,
"isHotStreak": false,
"isVeteran": false,
"isFreshBlood": false,
"isInactive": false
}
]
}
]
}
They Problem is the String is dynamic. I have to get "193461232" first before i can use the String. I have also the problem because name, queue, entries are arrays And I practiced with Simple Jsons first but this one is really hard for me.
Sorry my english is not really good but I hope you can still understand my Problem.