Here's my question:
So when you go to https://www.googleapis.com/youtube/v3/playlists?id=PLEylltUN0Ao6PvGUOJuVOAh6sSQvwoZQ3&key=AIzaSyBr7_g-xlBCBR6Mxk_2P0GRWeM5b_aJ5uM&part=snippet
You get a lot of information but I only want one thing and that is:
at thumbnails then default and then url so how do I do that?
To make it more clear:
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
And then
"default": {
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/default.jpg",
"width": 120,
"height": 90
},
And then
"url": "https://i.ytimg.com/vi/iilXL9y2HtE/default.jpg",
I want to return that url: https://i.ytimg.com/vi/iilXL9y2HtE/default.jpg
I'm coding in C#