google / google-api-objectivec-client-for-rest

Google APIs Client Library for Objective-C for REST
Apache License 2.0
765 stars 304 forks source link

GTLRYouTube_CommentThread empty on initWithCoder #298

Closed PhilipDukhov closed 5 years ago

PhilipDukhov commented 5 years ago

I've an array of GTLRYouTube_CommentThread objects, and saving it to the disk with NSKeyedArchiver. It worked fine until I've requested replies part - now all objects that has non empty GTLRYouTube_CommentThreadReplies has empty _json on unarchive.

thomasvl commented 5 years ago

There really isn't much to go on in this report so it is hard to guess what changed. I'd suggest comparing the json before and after you requested the replies to try and see what changed. I'd also suggest comparing what you write and to what happens when you read back in? Something might be causing the keyed archive to fail to find some of the classes. But again, with so little to go on here it is all guessing.

PhilipDukhov commented 5 years ago

I've found the problem. You are unarchiving object with decodeObjectOfClass:[NSMutableDictionary class], and in my case json has an encoded array inside, and you need to specify NSMutableArray(for secure coding) as one of possible classes. So line 126 of file GTLRObject.m needs to be updated with: _json = [decoder decodeObjectOfClasses:[NSSet setWithArray:@[[NSMutableDictionary class], [NSMutableArray class]]] forKey:kGTLRObjectJSONCoderKey];

thomasvl commented 5 years ago

You're likely going to have to provide a snippet that shows things. A GTLRObject should always have a dictionary for its JSON, with the exception of a GTLRResultArray which likely needs a tweak to support NSCoding, but none of the YouTube classes seem to use that type so that shouldn't be coming into play.

PhilipDukhov commented 5 years ago
let query = GTLRYouTubeQuery_CommentThreadsList.query(withPart: "snippet,replies")
query.videoId = "CH1XGdu-hzQ"
query.order = kGTLRYouTubeOrderRelevance
query.maxResults = 10
service.executeQuery(query) { (ticket, response, error) in
    guard error == nil else {
        print(ticket, error!)
        return
    }
    guard
        let response = response as? GTLRYouTube_CommentThreadListResponse,
        let threads = response.items
        else {
            fatalError()
    }
    do {
        let data = try NSKeyedArchiver.archivedData(withRootObject: threads, requiringSecureCoding: false)
        if let result = try NSKeyedUnarchiver.unarchivedObject(ofClasses: [NSArray.self, GTLRYouTube_CommentThread.self], from: data)
        {
            print("unarchived",result)
        }
    }
    catch {
        print("unarchive failed",error)
    }
}

With this code I'm receiving following error:

Error Domain=NSCocoaErrorDomain Code=4864 "value for key 'NS.objects' was of unexpected class 'NSMutableArray'. Allowed classes are '{(
    NSMutableDictionary
)}'." UserInfo={NSDebugDescription=value for key 'NS.objects' was of unexpected class 'NSMutableArray'. Allowed classes are '{(
    NSMutableDictionary
)}'.}

And by specifying array and dict for decodeObjectOfClasses helps. I've created a sample project with this code, just add your own GoogleService-Info.plist and run pod install GTLRYouTube_CommentThreadTest.zip

thomasvl commented 5 years ago

Quick attempt at the sample didn't work for me (I haven't done much with GoogleSignIn, so it might be the Info.plist entries or something with the GoogleService-Info.plist I tried to hack up).

Can you dump the json from the response? That should make it easier to have a test case that doesn't have signin requirements.

PhilipDukhov commented 5 years ago

This is what _json contains when it gets called from encodeWithCoder

{
    etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/jlM3dM8w2uO9p6WdFAwklSGBZqg\"";
    id = Ugy8WtFnCs6snCKsetB4AaABAg;
    kind = "youtube#commentThread";
    replies =     {
        comments =         (
                        {
                etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/mgWbd0btJ9V6xOwfvkwnw-VgQ24\"";
                id = "Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8z5kH7LW7BP";
                kind = "youtube#comment";
                snippet =                 {
                    authorChannelId =                     {
                        value = UCNXNMFcHDpCuFIvws7EjbFQ;
                    };
                    authorChannelUrl = "http://www.youtube.com/channel/UCNXNMFcHDpCuFIvws7EjbFQ";
                    authorDisplayName = "jasmine leonetti";
                    authorProfileImageUrl = "https://yt3.ggpht.com/-UNzvAIVEUmY/AAAAAAAAAAI/AAAAAAAAAAA/BZUvWCvMU1U/s28-c-k-no-mo-rj-c0xffffff/photo.jpg";
                    canRate = 1;
                    likeCount = 0;
                    parentId = Ugy8WtFnCs6snCKsetB4AaABAg;
                    publishedAt = "2019-08-26T13:24:24.000Z";
                    textDisplay = No;
                    textOriginal = No;
                    updatedAt = "2019-08-26T13:24:24.000Z";
                    videoId = "CH1XGdu-hzQ";
                    viewerRating = none;
                };
            },
                        {
                etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/vBqqo_bbNvnzx6kfJ8dwi23PIQw\"";
                id = "Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yoUA0yx5Z9";
                kind = "youtube#comment";
                snippet =                 {
                    authorChannelId =                     {
                        value = UCPFdi4mV4QGmEQGVj6T0HAw;
                    };
                    authorChannelUrl = "http://www.youtube.com/channel/UCPFdi4mV4QGmEQGVj6T0HAw";
                    authorDisplayName = "MMLZ\U30fb Black551";
                    authorProfileImageUrl = "https://yt3.ggpht.com/-CQTwk2GsWaQ/AAAAAAAAAAI/AAAAAAAAAAA/c9n3MI2rInM/s28-c-k-no-mo-rj-c0xffffff/photo.jpg";
                    canRate = 1;
                    likeCount = 0;
                    parentId = Ugy8WtFnCs6snCKsetB4AaABAg;
                    publishedAt = "2019-08-19T11:08:33.000Z";
                    textDisplay = Yep;
                    textOriginal = Yep;
                    updatedAt = "2019-08-19T11:08:33.000Z";
                    videoId = "CH1XGdu-hzQ";
                    viewerRating = none;
                };
            },
                        {
                etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/HGfLUtadKwcmf3vLxQJbuU-QWn4\"";
                id = "Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yTKnb6cTn3";
                kind = "youtube#comment";
                snippet =                 {
                    authorChannelId =                     {
                        value = "UC7Jf3tkIJzOVJmGu-col6Hw";
                    };
                    authorChannelUrl = "http://www.youtube.com/channel/UC7Jf3tkIJzOVJmGu-col6Hw";
                    authorDisplayName = "Meow-chan Gacha";
                    authorProfileImageUrl = "https://yt3.ggpht.com/-OSG2NlOwCy8/AAAAAAAAAAI/AAAAAAAAAAA/HJ5_EuFZIdQ/s28-c-k-no-mo-rj-c0xffffff/photo.jpg";
                    canRate = 1;
                    likeCount = 0;
                    parentId = Ugy8WtFnCs6snCKsetB4AaABAg;
                    publishedAt = "2019-08-10T20:43:25.000Z";
                    textDisplay = "Same \Ud83d\Ude02";
                    textOriginal = "Same \Ud83d\Ude02";
                    updatedAt = "2019-08-10T20:43:25.000Z";
                    videoId = "CH1XGdu-hzQ";
                    viewerRating = none;
                };
            },
                        {
                etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/BO4atd70-CMUWJI5BW6kncYhTJg\"";
                id = "Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yIz_ND3hcL";
                kind = "youtube#comment";
                snippet =                 {
                    authorChannelId =                     {
                        value = UCzU76Rz678UxfLiq7WHBZ8A;
                    };
                    authorChannelUrl = "http://www.youtube.com/channel/UCzU76Rz678UxfLiq7WHBZ8A";
                    authorDisplayName = "Dante Beebe";
                    authorProfileImageUrl = "https://yt3.ggpht.com/-37fgKE_JEDg/AAAAAAAAAAI/AAAAAAAAAAA/kK8HpazTWSo/s28-c-k-no-mo-rj-c0xffffff/photo.jpg";
                    canRate = 1;
                    likeCount = 0;
                    parentId = Ugy8WtFnCs6snCKsetB4AaABAg;
                    publishedAt = "2019-08-06T20:16:50.000Z";
                    textDisplay = "Cadence nevah you bow down to me in from the future pheasant";
                    textOriginal = "Cadence nevah you bow down to me in from the future pheasant";
                    updatedAt = "2019-08-06T20:16:50.000Z";
                    videoId = "CH1XGdu-hzQ";
                    viewerRating = none;
                };
            }
        );
    };
    snippet =     {
        canReply = 1;
        isPublic = 1;
        topLevelComment =         {
            etag = "\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM/7ctT6fyBO0OnKbCLUCzO0gWqO_o\"";
            id = Ugy8WtFnCs6snCKsetB4AaABAg;
            kind = "youtube#comment";
            snippet =             {
                authorChannelId =                 {
                    value = UCRfRs68k8I0ppOyWnfzOY0A;
                };
                authorChannelUrl = "http://www.youtube.com/channel/UCRfRs68k8I0ppOyWnfzOY0A";
                authorDisplayName = "Melanie Hoffelner";
                authorProfileImageUrl = "https://yt3.ggpht.com/-CK-x1r67BVc/AAAAAAAAAAI/AAAAAAAAAAA/KaMfBnhGXlk/s28-c-k-no-mo-rj-c0xffffff/photo.jpg";
                canRate = 1;
                likeCount = 1286;
                publishedAt = "2019-03-24T10:16:49.000Z";
                textDisplay = "My first Korean song I\U2019ve ever heard \Ud83d\Ude02 <br />2019??";
                textOriginal = "My first Korean song I\U2019ve ever heard \Ud83d\Ude02 \n2019??";
                updatedAt = "2019-03-24T10:16:49.000Z";
                videoId = "CH1XGdu-hzQ";
                viewerRating = none;
            };
        };
        totalReplyCount = 40;
        videoId = "CH1XGdu-hzQ";
    };
}
thomasvl commented 5 years ago

Looks like that the -description of the NSDictionary, not the actual json, you can get that easily via JSONString on any GTLRObject.

thomasvl commented 5 years ago

Just making sure I'm following, given kind = "youtube#commentThread"; is this a dump of response.items or of response or something else? I'm looking to see what response.JSONString is.

PhilipDukhov commented 5 years ago

response.JSONString:

{\n  \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/Ie_m3e_vjIHQxeBZ5ewhi4T0Ajg\\\"\",\n  \"kind\" : \"youtube#commentThreadListResponse\",\n  \"items\" : [\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/ERCQPF84GATpnbfU99kSrz8pJ_0\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/mgWbd0btJ9V6xOwfvkwnw-VgQ24\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8z5kH7LW7BP\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-26T13:24:24.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCNXNMFcHDpCuFIvws7EjbFQ\",\n              \"authorDisplayName\" : \"jasmine leonetti\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-UNzvAIVEUmY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BZUvWCvMU1U\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-26T13:24:24.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"No\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCNXNMFcHDpCuFIvws7EjbFQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"No\",\n              \"parentId\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/vBqqo_bbNvnzx6kfJ8dwi23PIQw\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yoUA0yx5Z9\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-19T11:08:33.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCPFdi4mV4QGmEQGVj6T0HAw\",\n              \"authorDisplayName\" : \"MMLZ・ Black551\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-CQTwk2GsWaQ\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/c9n3MI2rInM\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-19T11:08:33.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Yep\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCPFdi4mV4QGmEQGVj6T0HAw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Yep\",\n              \"parentId\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/HGfLUtadKwcmf3vLxQJbuU-QWn4\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yTKnb6cTn3\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-10T20:43:25.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC7Jf3tkIJzOVJmGu-col6Hw\",\n              \"authorDisplayName\" : \"Meow-chan Gacha\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-OSG2NlOwCy8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/HJ5_EuFZIdQ\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-10T20:43:25.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Same πŸ˜‚\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC7Jf3tkIJzOVJmGu-col6Hw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Same πŸ˜‚\",\n              \"parentId\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/BO4atd70-CMUWJI5BW6kncYhTJg\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg.8srIabP0HTl8yIz_ND3hcL\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-06T20:16:50.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCzU76Rz678UxfLiq7WHBZ8A\",\n              \"authorDisplayName\" : \"Dante Beebe\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-37fgKE_JEDg\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/kK8HpazTWSo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-06T20:16:50.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Cadence nevah you bow down to me in from the future pheasant\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCzU76Rz678UxfLiq7WHBZ8A\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Cadence nevah you bow down to me in from the future pheasant\",\n              \"parentId\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 40,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/08yncWmxpFIX-4iqZXaeo4Ko5uk\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugy8WtFnCs6snCKsetB4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-03-24T10:16:49.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCRfRs68k8I0ppOyWnfzOY0A\",\n            \"authorDisplayName\" : \"Melanie Hoffelner\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-CK-x1r67BVc\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/KaMfBnhGXlk\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-03-24T10:16:49.000Z\",\n            \"likeCount\" : 1290,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"My first Korean song I’ve ever heard πŸ˜‚ \\n2019??\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCRfRs68k8I0ppOyWnfzOY0A\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"My first Korean song I’ve ever heard πŸ˜‚ <br \\/>2019??\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/xfXWJupflclpkg4YkQUe2Z2W51M\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/YrvVOED9xagyL_1po8jpCBmFZMk\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg.8wtKJVIEyeB8zABHUTd2WD\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-28T06:46:04.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCost8xm553DLnF2gD7lbkBw\",\n              \"authorDisplayName\" : \"bug boy614 1s1k\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-VIRI6oUl6Ao\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/XgtxpDBZPjE\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-28T06:46:04.000Z\",\n              \"likeCount\" : 1,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Oh hell yeah\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCost8xm553DLnF2gD7lbkBw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Oh hell yeah\",\n              \"parentId\" : \"Ugz70_5cc2xibR4KQb14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/uE1lAD5SUIO9J5tGEXlY_l75LMw\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg.8wtKJVIEyeB8z7P6t1eTdZ\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-27T04:49:14.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC_qyhKVMhmPdPmH4IxlZ55A\",\n              \"authorDisplayName\" : \"Deagin Angrybird\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-O8NZLC1KMEs\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/hhDLAazfvjM\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-27T04:49:14.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Impossible it is 6 years old...\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC_qyhKVMhmPdPmH4IxlZ55A\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Impossible it is 6 years old...\",\n              \"parentId\" : \"Ugz70_5cc2xibR4KQb14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/jeMhFCF3cDAwKEdKlK0tDltAbI8\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg.8wtKJVIEyeB8z7I3D0jwG_\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-27T03:47:34.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCGE5Vy8ZrH_NX21ODqt2jaw\",\n              \"authorDisplayName\" : \"Wendy Sato\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-gKFf0PW7vLk\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/sQYNQn20Zdg\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-27T03:47:34.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"I used to hear about it a lot at elementary school\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCGE5Vy8ZrH_NX21ODqt2jaw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"I used to hear about it a lot at elementary school\",\n              \"parentId\" : \"Ugz70_5cc2xibR4KQb14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/qo1wEcPvBU8njquRqkLSkHK5mPc\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg.8wtKJVIEyeB8z0WMFMZkMJ\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-24T12:37:49.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCP18bjbBNDSuoiP-MFk9wXQ\",\n              \"authorDisplayName\" : \"Π˜Ρ€ΠΈΠ½Π° ΠšΡƒΠ΄Π·ΠΈΠ΅Π²Π°\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-K0tJ-6VJYIo\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/6OwUVElRBPE\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-24T12:37:49.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Fadi Habash Π»Π°ΠΉΠΊ Π»Π°ΠΉΠΊ мастикой Five Five Five ППП ППП Oppa Gangnam Style Oppa\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCP18bjbBNDSuoiP-MFk9wXQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Fadi Habash Π»Π°ΠΉΠΊ Π»Π°ΠΉΠΊ мастикой Five Five Five ППП ППП Oppa Gangnam Style Oppa\",\n              \"parentId\" : \"Ugz70_5cc2xibR4KQb14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/6KIz9ew_pAVtUp564tLdTX6r2-E\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg.8wtKJVIEyeB8yzLF7bsXCm\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-23T16:22:15.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCJDhGQbzrgreo2GM7P9SHIA\",\n              \"authorDisplayName\" : \"Eric Adu\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-urplFBMqETM\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/gnNl6bj1u6k\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-23T16:22:15.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Ye\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCJDhGQbzrgreo2GM7P9SHIA\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Ye\",\n              \"parentId\" : \"Ugz70_5cc2xibR4KQb14AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 25,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/A_rwm2uTTAJkwa7gKrIxaRGbHjY\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugz70_5cc2xibR4KQb14AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-07-02T15:15:52.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCKOlbgIdtjTXZ6EDi_BgO4w\",\n            \"authorDisplayName\" : \"Fadi Habash\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-cXwF5XWnvj8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/06CfVG-Iyms\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-07-02T15:15:52.000Z\",\n            \"likeCount\" : 816,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"Remember when this song was a trendy 7 years ago? πŸ˜‚πŸ˜‚\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCKOlbgIdtjTXZ6EDi_BgO4w\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"Remember when this song was a trendy 7 years ago? πŸ˜‚πŸ˜‚\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/VBm8Df8bCGrg_Zs0nAgALtc2eu4\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/3s2CQJFExwl41bkj13mrgUGa4yM\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg.8yIK9YN0P0X8zBghTubQ_0\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-28T20:48:37.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCE2lzL8Oo3QdtRLjSBksfQg\",\n              \"authorDisplayName\" : \"Syill The Sylbreon\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-LPdxG4udbIY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/3pUIFoYEvLo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-28T20:48:37.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"yeee\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCE2lzL8Oo3QdtRLjSBksfQg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"yeee\",\n              \"parentId\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/EgLdcsJyHB4KUIjmF8txKiFL2JQ\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg.8yIK9YN0P0X8zBDzZbGcpe\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-28T16:28:57.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCOv1XvBZK9E9QqFQ_rHdxLQ\",\n              \"authorDisplayName\" : \"Zeus channel\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-81NoaZXD_vY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/4mQijRTfwpk\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-28T16:28:57.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"You are a idiota\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCOv1XvBZK9E9QqFQ_rHdxLQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"You are a idiota\",\n              \"parentId\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/xgrafRriQOgAv21ytKgEj5Mw4-U\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg.8yIK9YN0P0X8zAGwdRsjpR\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-28T07:35:31.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCi8uQiQf_qqJeaceZDYdttQ\",\n              \"authorDisplayName\" : \"itz_wolf black\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-0No2gMsBhK8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/ukW17328lio\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-28T07:35:31.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"yep\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCi8uQiQf_qqJeaceZDYdttQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"yep\",\n              \"parentId\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/XKaFP-JzjAJRLloU-06hCXZb_64\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg.8yIK9YN0P0X8z5kBjpU-vh\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-26T13:23:40.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCNXNMFcHDpCuFIvws7EjbFQ\",\n              \"authorDisplayName\" : \"jasmine leonetti\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-UNzvAIVEUmY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BZUvWCvMU1U\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-26T13:23:40.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"No one is only in 1980\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCNXNMFcHDpCuFIvws7EjbFQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"No one is only in 1980\",\n              \"parentId\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/mtWp6jEtNURkQn9EZxBCGa3sZyg\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg.8yIK9YN0P0X8z3ggyJuFxv\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-25T18:14:37.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC4YDi0lGHv3nOPGH9ENez8g\",\n              \"authorDisplayName\" : \"packers suck\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-ZYRfqvQ1dk8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/t5v3h7RhcS8\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-25T18:14:37.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Me\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC4YDi0lGHv3nOPGH9ENez8g\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Me\",\n              \"parentId\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 38,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/eiu3GSOxzm9H7WBsr4CzO7WFJSw\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugw5dA9_ZOgNK5joCAd4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-08-06T14:06:10.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCFZrgc-kDllMEWIA_bpN8lg\",\n            \"authorDisplayName\" : \"Krishnapalesh Mandavilli\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-qtWtAY2k_iQ\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/dNjy0QH6gPU\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-08-06T14:06:10.000Z\",\n            \"likeCount\" : 482,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"Anyone watching in August 2019?\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCFZrgc-kDllMEWIA_bpN8lg\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"Anyone watching in August 2019?\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/wtmn5Bdq5Z8QCvqyWZA9wR-ebUk\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugxfq7ht2HP0HGHK2aB4AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/IXW0iuKV7YD4MuG_Yo-rlwU0M-o\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugxfq7ht2HP0HGHK2aB4AaABAg.8yxDZfuE-n28z5feo2dA1n\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-26T12:44:04.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCVqzL7gaFMNQxadS1_S4QAg\",\n              \"authorDisplayName\" : \"Ocal123\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-u5QseTaX10g\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/mB156qMuAng\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-26T12:44:04.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Nah its 3 days ago\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCVqzL7gaFMNQxadS1_S4QAg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Nah its 3 days ago\",\n              \"parentId\" : \"Ugxfq7ht2HP0HGHK2aB4AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 1,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/ttEjDJ0XNEZ3UsBrbaSAA6s-Szc\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugxfq7ht2HP0HGHK2aB4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-08-22T20:36:40.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCMDCI42q4ws1CTv69nFUX1g\",\n            \"authorDisplayName\" : \"Lance Talbert\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-HMp3MjbpR7o\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/v4TrhXd_9pA\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-08-22T20:36:40.000Z\",\n            \"likeCount\" : 50,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"Song: Made in 2012\\nEvery comment: 1 Month Ago\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCMDCI42q4ws1CTv69nFUX1g\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"Song: Made in 2012<br \\/>Every comment: 1 Month Ago\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/5kZJkHipy3pitm_nHuDoQqyAvp8\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"UgxslLUaMQrqY-6PuuR4AaABAg\",\n      \"snippet\" : {\n        \"totalReplyCount\" : 0,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/mLrB4dxtGyVZZSOr9qbHcNTL6TQ\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"UgxslLUaMQrqY-6PuuR4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-07-18T04:55:33.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC3r2b6VaVuyB_gwYzMm-uwQ\",\n            \"authorDisplayName\" : \"sm nostalgia\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-ESt0sIGB7ew\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/pOMweJVKblA\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-07-18T04:55:33.000Z\",\n            \"likeCount\" : 359,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"I love how everyone is here in 2019 enjoying this iconic song πŸ˜ŠπŸ˜‚πŸ˜‚\",\n            \"authorChannelId\" : {\n              \"value\" : \"UC3r2b6VaVuyB_gwYzMm-uwQ\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"I love how everyone is here in 2019 enjoying this iconic song πŸ˜ŠπŸ˜‚πŸ˜‚\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/UHJXljX5mm7bYY8goqW537AnPkw\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/tZs3aPQPMv-BzxaNx6bIgYYggAo\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg.8uRfuClhao78z7Oa96LwSK\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-27T04:44:38.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCoQRl5Dva9Qhjp3o5pt7yQQ\",\n              \"authorDisplayName\" : \"Chim Chim\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-E1TjPEsFtwA\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/eIL3sLVFW10\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-27T04:44:38.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Same\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCoQRl5Dva9Qhjp3o5pt7yQQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Same\",\n              \"parentId\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/2NUR_C9Zx2tKgPYNGV2KfQz5Wfc\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg.8uRfuClhao78z3QhCQdYaf\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-25T15:46:07.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC4mCG56ow-S6jn4013XSghQ\",\n              \"authorDisplayName\" : \"TimbaVK Jn\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-F5Afk8jipzU\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/8opWmxxBrrU\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-25T15:46:07.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Same\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC4mCG56ow-S6jn4013XSghQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Same\",\n              \"parentId\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/9ASQOlrMma8bZRcOfWBCibYMuK0\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg.8uRfuClhao78z2cyRc6qLN\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-25T08:22:49.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCUpV5e1c2Qf-kmjehb8Wizw\",\n              \"authorDisplayName\" : \"Vizalty U\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-4JebxGBuFw8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/WfVT29IUAr4\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-25T08:22:49.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Samee\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCUpV5e1c2Qf-kmjehb8Wizw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Samee\",\n              \"parentId\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/MzIV5UMB2JsE-3BOmRD330JhpUU\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg.8uRfuClhao78z0m9qEky20\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-24T15:04:40.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC5xMS_8iBxUMSux_C8Va39Q\",\n              \"authorDisplayName\" : \"Fortnite_Widow\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-Ar-JHqEk1ic\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/ajkoZZaR9i0\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-24T15:04:40.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Same πŸ˜‚πŸ˜‚πŸ˜‚\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC5xMS_8iBxUMSux_C8Va39Q\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Same πŸ˜‚πŸ˜‚πŸ˜‚\",\n              \"parentId\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/9griF8ge0NODprYEKNH2wceWFGI\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg.8uRfuClhao78z08wmcqznQ\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-24T09:13:14.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCQKztLBytMwv40tmuP6_zng\",\n              \"authorDisplayName\" : \"Jarmiander118 Minecraft\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-3xqYjlTOc20\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/QEyWmR0MgOY\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-24T09:13:14.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"But then it was korean\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCQKztLBytMwv40tmuP6_zng\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"But then it was korean\",\n              \"parentId\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 206,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/jw5qNF5s7kk_sMuAsrVcuyjQ99c\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugz_IC2_ITeCyGggHx14AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-05-02T19:12:30.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCAZ4_ekJoKQGNyjm4CjUKUQ\",\n            \"authorDisplayName\" : \"Vanessa 1608\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-RoY0w8fM9qo\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/-1MKr7SUQUI\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-05-02T19:12:30.000Z\",\n            \"likeCount\" : 2343,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"When I was younger I thought the song is englishπŸ˜‚\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCAZ4_ekJoKQGNyjm4CjUKUQ\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"When I was younger I thought the song is englishπŸ˜‚\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/lC7EVKGoGuLX84EHlg6RTH7qF5Q\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/qqgVJx8wCnuM2hgaMVS21rt28Cc\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg.8wEt7xcu6qk8z5kEqIVqvu\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-26T13:24:05.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCNXNMFcHDpCuFIvws7EjbFQ\",\n              \"authorDisplayName\" : \"jasmine leonetti\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-UNzvAIVEUmY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BZUvWCvMU1U\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-26T13:24:05.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"No\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCNXNMFcHDpCuFIvws7EjbFQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"No\",\n              \"parentId\" : \"UgzDGv5F4_CeufvstHR4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/xPGuc_CHN5asndemEybjfWrTKKU\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg.8wEt7xcu6qk8ynEW7ZP1mc\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-18T23:32:31.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCdym-7sNp2H8O4VO3k1C-1A\",\n              \"authorDisplayName\" : \"Pauline Isaga\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-tL2oDf78xYI\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/bvuwpfi87-k\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-18T23:32:31.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"3rdzzzaw4rgvcTezc..cmxm\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCdym-7sNp2H8O4VO3k1C-1A\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"3rdzzzaw4rgvcTezc..cmxm\",\n              \"parentId\" : \"UgzDGv5F4_CeufvstHR4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/aD2neM3VbCxx_QhtRS0JOnXXCQw\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg.8wEt7xcu6qk8ybAxIqOy2v\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-14T07:10:31.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCRQDuNRWmhc9A7gRdR0vnnA\",\n              \"authorDisplayName\" : \"FooF Frost\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-4LpsxZdjHlU\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/mu30QpIslkA\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-14T07:10:31.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"I think I’m the only one that was doing naruto hand signs to EVERY WORD lmao\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCRQDuNRWmhc9A7gRdR0vnnA\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"I think I’m the only one that was doing naruto hand signs to EVERY WORD lmao\",\n              \"parentId\" : \"UgzDGv5F4_CeufvstHR4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/PagmTDowUCtbTnx7ZrfcfhdevXM\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg.8wEt7xcu6qk8yTF7iFk7BW\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-10T19:53:52.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCS3N6oJoIRM7pySs6ybcmEg\",\n              \"authorDisplayName\" : \"Π½ΡƒΠ±ΠΈΠΊ Minecraft\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-h6Y1jdX7eAE\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/o4xppJt1Yao\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-10T19:53:52.000Z\",\n              \"likeCount\" : 1,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Yes\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCS3N6oJoIRM7pySs6ybcmEg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Yes\",\n              \"parentId\" : \"UgzDGv5F4_CeufvstHR4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/0j2qNxbUsR46yRh3cwQkeiTKz1Y\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg.8wEt7xcu6qk8yNhuist3fC\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-08T16:18:39.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UC6mU9TkoMV9jXR7Oi_YxFLQ\",\n              \"authorDisplayName\" : \"Priscila Varela\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-TWdcSKJzpcY\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/FqE03lR36b8\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-08T16:18:39.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Sou do Brasil\",\n              \"authorChannelId\" : {\n                \"value\" : \"UC6mU9TkoMV9jXR7Oi_YxFLQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Sou do Brasil\",\n              \"parentId\" : \"UgzDGv5F4_CeufvstHR4AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 9,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/1l3pZ1CJbAMWtH1-iLOWuMH2634\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"UgzDGv5F4_CeufvstHR4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-06-16T13:00:46.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCsfe5oDcYeAqvHrOOgWboTw\",\n            \"authorDisplayName\" : \"Liverpool YNWA\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-MfGPrWUxXLE\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/7CBVEHs49DA\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-06-16T13:00:46.000Z\",\n            \"likeCount\" : 280,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"*2019 ?* Anyone Else πŸ˜‚πŸ€™πŸ‘…πŸ€™\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCsfe5oDcYeAqvHrOOgWboTw\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"<b>2019 ?<\\/b> Anyone Else πŸ˜‚πŸ€™πŸ‘…πŸ€™\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/E4UiC5N6E9RrxcNJBPYD7bVCku4\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/ZwE1aElOlQL1SRRcVtzbnwxpYz8\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg.8xEFpANebRx8ysYhecXWkg\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-21T01:05:11.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCCIRbTpd7o_x5ntdtinlhyQ\",\n              \"authorDisplayName\" : \"Christin Huckleby\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-GtImunzjeRs\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/VeHhDmFrN1E\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-21T01:05:11.000Z\",\n              \"likeCount\" : 1,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"ayyyyyyyy\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCCIRbTpd7o_x5ntdtinlhyQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"ayyyyyyyy\",\n              \"parentId\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/U0pUBtwlwPGV01K4MC3Wt2FB86o\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg.8xEFpANebRx8ynLn3UIhdA\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-19T00:36:08.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCik3E4jo8gwEgQmkHF91aSQ\",\n              \"authorDisplayName\" : \"Taekook army 4 life\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-yPbmWlZfWfg\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/GoEqVegTf90\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-19T00:36:08.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Antoinette James πŸ˜‚\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCik3E4jo8gwEgQmkHF91aSQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Antoinette James πŸ˜‚\",\n              \"parentId\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/SYELysOMWK-_uQYz0z_aoygB_P0\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg.8xEFpANebRx8ya3qNXFBdu\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-13T20:49:10.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCuS5yshIFGPUOpyK90GmsmQ\",\n              \"authorDisplayName\" : \"Anonymous 1335\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-5oEkVK1lwx8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/NQJRcMBrCks\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-13T20:49:10.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Meinst du denn von Katja\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCuS5yshIFGPUOpyK90GmsmQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Meinst du denn von Katja\",\n              \"parentId\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/8tpnqhL0nPk7JbIm1uuAsAv5pNg\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg.8xEFpANebRx8yFDAdY5b-j\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-05T09:07:25.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCP__dAc9QFT4wtSFZa9P2Fg\",\n              \"authorDisplayName\" : \"Andrew Mindez\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-YFNIuwISxI4\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/ap81ggdeFJw\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-05T09:07:25.000Z\",\n              \"likeCount\" : 3,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"AYE ISSA KID who says i cant be both\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCP__dAc9QFT4wtSFZa9P2Fg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"AYE ISSA KID who says i cant be both\",\n              \"parentId\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/o1vGf8P8ib7RqmyhGAHmabxVIgY\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg.8xEFpANebRx8y9z_BfUxea\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-03T08:23:38.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCb5HSia8g1y-g_vx38rAtHA\",\n              \"authorDisplayName\" : \"trickzgaming1 101\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-1QAt9zy1mqw\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/JrPTWud8UuI\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-03T08:23:38.000Z\",\n              \"likeCount\" : 1,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Wow just one\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCb5HSia8g1y-g_vx38rAtHA\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Wow just one\",\n              \"parentId\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 6,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/MRT1wfTtinpvhg_48ImtstZtH1I\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugw_-qUoHvoU9-HtNe94AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-07-11T03:39:56.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCe8FJ1c7FyIsgh1PDBD8A8g\",\n            \"authorDisplayName\" : \"Antoinette James\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-NJ66pvcxZB8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/OvEFbEmUHwc\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-07-11T03:39:56.000Z\",\n            \"likeCount\" : 301,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"Gucci gang : comment\\n\\nGangnam style: like\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCe8FJ1c7FyIsgh1PDBD8A8g\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"Gucci gang : comment<br \\/><br \\/>Gangnam style: like\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/a40IDzq_Q8bp0mvzNOG4KceDGF8\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/VqzMplcEB_yffXbr9PEFx2TC41U\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg.8xVGueCWJsH8yzpkZwSHer\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-23T20:57:33.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCb4nYF8QFvVhzN9ad7aDUvQ\",\n              \"authorDisplayName\" : \"Π’Π°Π½Π·ΠΈΠ»Π° Мальсагова\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-S_RaHWk3fbE\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/FeL6QgPYxng\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-23T20:57:33.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"@HΓ–RT AUF ZU STREITEN πŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ‘Ž\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCb4nYF8QFvVhzN9ad7aDUvQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"@HΓ–RT AUF ZU STREITEN πŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ˜ŽπŸ‘Ž\",\n              \"parentId\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/MXEh4bq8PTrCZ3XnThiNjOdLm0Y\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg.8xVGueCWJsH8yzCgWAqKE0\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-23T15:07:29.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCn5sW0Tiv0C0S6loFjQss9A\",\n              \"authorDisplayName\" : \"HΓ–RT AUF ZU STREITEN\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-zQ8Cti3ESxs\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/3F32lZCcSIo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-23T15:07:29.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCn5sW0Tiv0C0S6loFjQss9A\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚\",\n              \"parentId\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/jCXsVRE-ZWgx8ArZ67LsjeQDtpQ\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg.8xVGueCWJsH8yx44yx68qt\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-22T19:13:50.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCb4nYF8QFvVhzN9ad7aDUvQ\",\n              \"authorDisplayName\" : \"Π’Π°Π½Π·ΠΈΠ»Π° Мальсагова\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-S_RaHWk3fbE\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/FeL6QgPYxng\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-22T19:13:50.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCb4nYF8QFvVhzN9ad7aDUvQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘\",\n              \"parentId\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/HUmOHbb1qCOipYxhbZmem-4WrXw\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg.8xVGueCWJsH8yCQTWDcJ3V\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-04T07:05:52.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UClXJdVtQl8vfVXmNDUtfyTw\",\n              \"authorDisplayName\" : \"Channy Whocares\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-bAIB6QiuIu0\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/v3JaPa_ouo0\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-04T07:05:52.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"Some things just never change\",\n              \"authorChannelId\" : {\n                \"value\" : \"UClXJdVtQl8vfVXmNDUtfyTw\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"Some things just never change\",\n              \"parentId\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/gyKIWFskORzb0qq_wbZZZXCmpKM\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg.8xVGueCWJsH8y7uZmfLFUU\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-02T13:01:25.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCed9KYsl36k2Sa4H03suKqA\",\n              \"authorDisplayName\" : \"Spidey Le GivrΓ© !\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-lcseTv7Zw-U\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/EIgGIa89s4c\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-02T13:01:25.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"@minecrafters epic diamonds A HATERπŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜…πŸ˜‚πŸ˜πŸ˜„\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCed9KYsl36k2Sa4H03suKqA\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"@minecrafters epic diamonds A HATERπŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜†πŸ˜…πŸ˜‚πŸ˜πŸ˜„\",\n              \"parentId\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 14,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/bMPXHcNaVHTVNit9mKJyVG8oDn0\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"UgzW6XFw49v1cBK-UyV4AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-07-17T18:16:31.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCaOoD9Th7f9SuZ9KvzAUUPA\",\n            \"authorDisplayName\" : \"offical team omega\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-AVrssLh9ff8\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BU7GJaRZtMo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-07-17T18:16:31.000Z\",\n            \"likeCount\" : 222,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"In 2012 whoop and gandam style \\n2019 kids ride the pony from FORTNITE\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCaOoD9Th7f9SuZ9KvzAUUPA\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"In 2012 whoop and gandam style <br \\/>2019 kids ride the pony from FORTNITE\"\n          }\n        },\n        \"canReply\" : true\n      }\n    },\n    {\n      \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/zz3Pz98h3jWhdqKEpGibEaYRN_U\\\"\",\n      \"kind\" : \"youtube#commentThread\",\n      \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\",\n      \"replies\" : {\n        \"comments\" : [\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/mg53suJZdBSGPnx8AHSxoLjnfVQ\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg.8vZPsST7j-28yh2duiSQyD\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-16T13:53:25.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCHSYdbI2A3mToPUpcb_1Gcg\",\n              \"authorDisplayName\" : \"AgrataPlayzs\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-YdSKDi_OZSs\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/fYoaxfEW9lU\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-16T13:53:25.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"I still dont understand Kpop\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCHSYdbI2A3mToPUpcb_1Gcg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"I still dont understand Kpop\",\n              \"parentId\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/VJx-NDacOGUOzBwZxPmk4UKpi-g\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg.8vZPsST7j-28yh1wMZOdY9\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-08-16T13:47:11.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCHSYdbI2A3mToPUpcb_1Gcg\",\n              \"authorDisplayName\" : \"AgrataPlayzs\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-YdSKDi_OZSs\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/fYoaxfEW9lU\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-08-16T13:47:11.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"*_TheMoreYouKnow_*\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCHSYdbI2A3mToPUpcb_1Gcg\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"<b><i>TheMoreYouKnow<\\/i><\\/b>\",\n              \"parentId\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/0259mQa0kIARdZZHOV8AYV_q7mg\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg.8vZPsST7j-28xQypdnqoZH\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-07-16T02:12:50.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCa5RTyulPGMCpROVelxuyAA\",\n              \"authorDisplayName\" : \"Ateez Trash\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-CsDe6SuTaOg\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BKpk53e1jBo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-07-16T02:12:50.000Z\",\n              \"likeCount\" : 0,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"nicole yt19 Yeah.\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCa5RTyulPGMCpROVelxuyAA\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"nicole yt19 Yeah.\",\n              \"parentId\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\"\n            }\n          },\n          {\n            \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/r4aPnDHvIqqv3O_w5brvitFfEv4\\\"\",\n            \"kind\" : \"youtube#comment\",\n            \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg.8vZPsST7j-28xQxrFJUNW6\",\n            \"snippet\" : {\n              \"updatedAt\" : \"2019-07-16T02:04:19.000Z\",\n              \"videoId\" : \"CH1XGdu-hzQ\",\n              \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCGneNZCol765LKafRdBKitQ\",\n              \"authorDisplayName\" : \"nicole army\",\n              \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-WYXW5OZhND4\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/R2LfM2F_XeE\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n              \"publishedAt\" : \"2019-07-16T02:04:19.000Z\",\n              \"likeCount\" : 2,\n              \"viewerRating\" : \"none\",\n              \"textOriginal\" : \"You an army right\",\n              \"authorChannelId\" : {\n                \"value\" : \"UCGneNZCol765LKafRdBKitQ\"\n              },\n              \"canRate\" : true,\n              \"textDisplay\" : \"You an army right\",\n              \"parentId\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\"\n            }\n          }\n        ]\n      },\n      \"snippet\" : {\n        \"totalReplyCount\" : 6,\n        \"isPublic\" : true,\n        \"videoId\" : \"CH1XGdu-hzQ\",\n        \"topLevelComment\" : {\n          \"etag\" : \"\\\"8jEFfXBrqiSrcF6Ee7MQuz8XuAM\\/hFzeo6ztAqJh-R7mRqu6vjgD11Q\\\"\",\n          \"kind\" : \"youtube#comment\",\n          \"id\" : \"Ugwi0x3mLtW8NsCQkC14AaABAg\",\n          \"snippet\" : {\n            \"updatedAt\" : \"2019-05-30T15:49:02.000Z\",\n            \"videoId\" : \"CH1XGdu-hzQ\",\n            \"authorChannelUrl\" : \"http:\\/\\/www.youtube.com\\/channel\\/UCa5RTyulPGMCpROVelxuyAA\",\n            \"authorDisplayName\" : \"Ateez Trash\",\n            \"authorProfileImageUrl\" : \"https:\\/\\/yt3.ggpht.com\\/-CsDe6SuTaOg\\/AAAAAAAAAAI\\/AAAAAAAAAAA\\/BKpk53e1jBo\\/s28-c-k-no-mo-rj-c0xffffff\\/photo.jpg\",\n            \"publishedAt\" : \"2019-05-30T15:49:02.000Z\",\n            \"likeCount\" : 220,\n            \"viewerRating\" : \"none\",\n            \"textOriginal\" : \"Whenever I played Just Dance I never knew that this was Kpop, I didn’t even know what Kpop was at the time.\\n\\n\\nThe more you know.\",\n            \"authorChannelId\" : {\n              \"value\" : \"UCa5RTyulPGMCpROVelxuyAA\"\n            },\n            \"canRate\" : true,\n            \"textDisplay\" : \"Whenever I played Just Dance I never knew that this was Kpop, I didn’t even know what Kpop was at the time.<br \\/><br \\/><br \\/>The more you know.\"\n          }\n        },\n        \"canReply\" : true\n      }\n    }\n  ],\n  \"nextPageToken\" : \"QURTSl9pM1ZDTFlsU0djOU4zOWZUVmJRYk1SV21FYkxsMnlUekVVQmtGRURiV1hTNkVHcENBclRrOTVWQk9JRzlHZzZZbU9SdXJMeTlSbkx0OVhEOUxQaHEyUU1UaGFXaUR2ZWV1QkVNbDJNZVc3d3A4YnhXNUMtTDdzRVFqMEV0bVpXcTFHV3pzRzNydExEMXJ6b2xWcWVBcWxpb2VsQmItY1RFRVZKbkhlenppbU1MTmo1WUEzT0tXR2J6NkNpSklOZUFFQzJRVHU0R1JTcmJCbHFqR0tZUmpwVFliVWJvei1oUERjLU5HM3Z0VFQzSVVmVFNR\",\n  \"pageInfo\" : {\n    \"resultsPerPage\" : 10,\n    \"totalResults\" : 10\n  }\n}
thomasvl commented 5 years ago

Thanks, I'm able to repro things, and it definitely is strange. It seems to be a behavior in the system libraries that I'm not completely following. If your code is tweaked to archive the response (allowing NSDictionary.self instead) vs. response.items then things appear to work just fine. So it seems like there is some degree of validation on only some of the sub things loaded, but I'm not sure what the rules are. This will likely take opening up a radar with apple and a completely reduced test case to see what they say and what is expected since the docs don't seem to explain it (as far as I can tell).

thomasvl commented 5 years ago

fyi - just cut a release with the fix.

Looks like with some older toolchains and running on old oses behaviors might be different, but the PR should make things work in all situations now.

Thanks again for the report.