-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel vlog_2020-01-01T000000Z_2020-01-02T000000Z_comment_details.json
1787 lines (1787 loc) · 70 KB
/
travel vlog_2020-01-01T000000Z_2020-01-02T000000Z_comment_details.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"eJul1-yGaNk": [
{
"kind": "youtube#commentThread",
"etag": "SB1aoqeDq52d_JNY2Q45UiNU4hM",
"id": "UgwpVSiUCavgEN16qS54AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "6dlz8se8TTTKDWtKVJBt0omZnf0",
"id": "UgwpVSiUCavgEN16qS54AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"textDisplay": "I asked Google and I believe the orange flower you asked about is called CAULIFLORY. Were you bothered by mosquitoes? I enjoy traveling around with you both. I especially like how you add little tips like don't where your flip-flops after it rains to walk in the rainforest.",
"textOriginal": "I asked Google and I believe the orange flower you asked about is called CAULIFLORY. Were you bothered by mosquitoes? I enjoy traveling around with you both. I especially like how you add little tips like don't where your flip-flops after it rains to walk in the rainforest.",
"authorDisplayName": "Rochelle Whitney",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwngKJs-SY7fHJ98breiZoK_N84D0lWiGMNWjx3Nq0w=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCMfWUnApyxlhX_wMHJM-xvw",
"authorChannelId": {
"value": "UCMfWUnApyxlhX_wMHJM-xvw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-04-29T08:17:18Z",
"updatedAt": "2021-04-29T08:17:18Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "lPPUBBXlDyzPFzyfVq-tISL3e-k",
"id": "UgyCNOi2HrEG0bXLneh4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "cBf8RCI3fEEJUH90GgIHCmpUZMg",
"id": "UgyCNOi2HrEG0bXLneh4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"textDisplay": "Omygosh I looove this place. And the frogs are so cute! What a cool permaculture farm I love how diverse it it and all the different things they grow",
"textOriginal": "Omygosh I looove this place. And the frogs are so cute! What a cool permaculture farm I love how diverse it it and all the different things they grow",
"authorDisplayName": "Slightly Off The Beaten Track",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnj1K_bg7kr5Rqm-aUZHW6HYVrLd12uu_FbPt_7D=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCSbUWGMF054o312D2wAbz5w",
"authorChannelId": {
"value": "UCSbUWGMF054o312D2wAbz5w"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-01-22T12:58:04Z",
"updatedAt": "2020-01-22T12:58:04Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "0mQ1qv0ICi-eO-ga8sZ7WPajF8g",
"id": "Ugxgyl5SsYamyL6iuJF4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "pO2LYg5tEPmZr9BBwqy78w6t3pc",
"id": "Ugxgyl5SsYamyL6iuJF4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"textDisplay": "Thanks for sharing this beautiful travel adventure! Reminds me f my home country The Philippines",
"textOriginal": "Thanks for sharing this beautiful travel adventure! Reminds me f my home country The Philippines",
"authorDisplayName": "Robelyn Thiel",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh65Z0j_WaCh2ohUQ648wiGphBPTFSVoFJ_VGamFg=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UChQRw1ZnIouT2WO22fsjcnA",
"authorChannelId": {
"value": "UChQRw1ZnIouT2WO22fsjcnA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-01-08T21:28:34Z",
"updatedAt": "2020-01-08T21:28:34Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "xL_az7467b8FjoBugCqPpSwgeNo",
"id": "UgxUwniqwrCBGSvf7d94AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "Gjjg18jfXym-wuq0DK5gqjsEylw",
"id": "UgxUwniqwrCBGSvf7d94AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"textDisplay": "You\u2019re gonna make me google about the tree and the frog... interesting! Love the way you feature your travel. \ud83d\udc4d",
"textOriginal": "You\u2019re gonna make me google about the tree and the frog... interesting! Love the way you feature your travel. \ud83d\udc4d",
"authorDisplayName": "Pinay mom's blogs",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjb7gQAHNM0P6m1liQTDaWep6uIWOG73RdBl8ULwg=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCTPxMCyJyYGF6H0eBhOvgsA",
"authorChannelId": {
"value": "UCTPxMCyJyYGF6H0eBhOvgsA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-01-05T00:29:03Z",
"updatedAt": "2020-01-05T00:29:03Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "h-7R_Acgq_vt4xtxbUM-7H0hUPA",
"id": "UgwGE6MyiiuhEsv34kV4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "I6dn5DaMVcHDQqDEEkL5-0FCSUE",
"id": "UgwGE6MyiiuhEsv34kV4AaABAg",
"snippet": {
"videoId": "eJul1-yGaNk",
"textDisplay": "You both look incredibly happy. Another lovely video. Never forget those unable to travel see the world through our lenses \ud83c\udf08\u2764\ufe0f\ud83c\udfa5",
"textOriginal": "You both look incredibly happy. Another lovely video. Never forget those unable to travel see the world through our lenses \ud83c\udf08\u2764\ufe0f\ud83c\udfa5",
"authorDisplayName": "Carol and Derek's travel log",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnj7IMi-X4AlgXUUzJzVacC-YD4XSNhjR6Xw4Rg8=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCpKPt7vddILdI0n74vGHj5A",
"authorChannelId": {
"value": "UCpKPt7vddILdI0n74vGHj5A"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-01-04T17:24:30Z",
"updatedAt": "2020-01-04T17:24:30Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
}
],
"f2YsEXzKqkk": [
{
"kind": "youtube#commentThread",
"etag": "0WtiCx2gz_z47zMuE05cRip4P0k",
"id": "Ugy6om6TXfQEX7hPT_l4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "2kNXz-QEtLXyxAYFh4eAcykDXl0",
"id": "Ugy6om6TXfQEX7hPT_l4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"textDisplay": "My FIRST flight attendant vlog of 2020! I hope everyone has a wonderful, safe and amazing new year! \u2708\ufe0f\u2764\ufe0f\ud83c\udf0d Enjoy this vlog from Guayaquil, Ecuador! \ud83e\udd17",
"textOriginal": "My FIRST flight attendant vlog of 2020! I hope everyone has a wonderful, safe and amazing new year! \u2708\ufe0f\u2764\ufe0f\ud83c\udf0d Enjoy this vlog from Guayaquil, Ecuador! \ud83e\udd17",
"authorDisplayName": "Jetting Julia",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjrJ52B0Ow9A29BBiVBXLfn6-292cBrLC7ZUmCD=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCkRiPY0hPYZh96RQShizu6w",
"authorChannelId": {
"value": "UCkRiPY0hPYZh96RQShizu6w"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 201,
"publishedAt": "2020-01-01T18:08:51Z",
"updatedAt": "2020-01-01T18:08:51Z"
}
},
"canReply": true,
"totalReplyCount": 15,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "loWof2MVy70xZZiSJOUG94Ks4E8",
"id": "UgxQZ0RjflGtqJ4J4pF4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "9u3vvSOcdresOsVBZb7SBDu4QCE",
"id": "UgxQZ0RjflGtqJ4J4pF4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"textDisplay": "Nice video! Guayaquil is an interesting city to visit. Greetings from TX.",
"textOriginal": "Nice video! Guayaquil is an interesting city to visit. Greetings from TX.",
"authorDisplayName": "C L",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnie7xSrEU3tUQBaZzw7_Lp7X88Piazvm9oVCw8I=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCvshuMYQwKxcjiTik7-jQOA",
"authorChannelId": {
"value": "UCvshuMYQwKxcjiTik7-jQOA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-05-19T15:07:45Z",
"updatedAt": "2021-05-19T15:07:45Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "wlMLOEcAdEmmyBsaZTSODwo0Y7E",
"id": "Ugwu43FkCQ09U2Jh2dx4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "LRwXtvvcryjAWwcV9DiQhUMsqrw",
"id": "Ugwu43FkCQ09U2Jh2dx4AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"textDisplay": "the subtitles on this are sometimes so wrong on so many levels its hilarious",
"textOriginal": "the subtitles on this are sometimes so wrong on so many levels its hilarious",
"authorDisplayName": "baidaG",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjw5RUUNCzMBZsb5jwFV5HukhyAi7FCHd2hWw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UC6jnFQFoMhSGhG55mMXW0zw",
"authorChannelId": {
"value": "UC6jnFQFoMhSGhG55mMXW0zw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-05-01T19:53:51Z",
"updatedAt": "2021-05-01T19:53:51Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "8_6BNXWfxPLvm4QdACuITmxxIpM",
"id": "UgwA8liw38iQGzADm114AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "zv1GF_O4AzoKZ35Eujm9PV4ah_w",
"id": "UgwA8liw38iQGzADm114AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"textDisplay": "My family is from Ecuador!! May I ask for any tips on how you recorded this vlog in Guayaquil? Every time I visit I always want to record for a vlog but my family doesn't let me because they say I'll get mugged.",
"textOriginal": "My family is from Ecuador!! May I ask for any tips on how you recorded this vlog in Guayaquil? Every time I visit I always want to record for a vlog but my family doesn't let me because they say I'll get mugged.",
"authorDisplayName": "joselyn cadena",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwngNDhuVfUZg1lQlr98W6QVWeYO9iJAQBURM-e9pPg=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCJKMzsWSj9GGeRylLBSV4_Q",
"authorChannelId": {
"value": "UCJKMzsWSj9GGeRylLBSV4_Q"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-03-25T15:02:27Z",
"updatedAt": "2021-03-25T15:02:27Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "asxfch-pimh48Fiog5qyzZh6zv4",
"id": "Ugyg44P-wA1u6G0-9714AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "XCJwW-wQxwNKEdZyN6RnauKPP0k",
"id": "Ugyg44P-wA1u6G0-9714AaABAg",
"snippet": {
"videoId": "f2YsEXzKqkk",
"textDisplay": "How many dogs did you see in the streets that's the sad part. Beautiful country",
"textOriginal": "How many dogs did you see in the streets that's the sad part. Beautiful country",
"authorDisplayName": "I heart family garcia",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh9Iq4NXzbt1gi8HgF30nk9NnjZX803cc15BRJIkw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCq5kjdP2Pj3Eig97DCVqRdg",
"authorChannelId": {
"value": "UCq5kjdP2Pj3Eig97DCVqRdg"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-03-21T02:07:24Z",
"updatedAt": "2021-03-21T02:07:24Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
}
],
"5FHMolROMZQ": [
{
"kind": "youtube#commentThread",
"etag": "tz8Op2orXQSCAzUct-R9cA6SRKk",
"id": "UgztBqzpN57Q2IwcffB4AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "m62TOgHrLpsfBiicqWw-IleMDvk",
"id": "UgztBqzpN57Q2IwcffB4AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"textDisplay": "Gorgeous!! Heading there soon \ud83d\udc97 what kind of camera do you use?",
"textOriginal": "Gorgeous!! Heading there soon \ud83d\udc97 what kind of camera do you use?",
"authorDisplayName": "spaceglitter",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwngtnpgoUnohXTEfhyqSovSYfhkydk5zcW5TyuvA=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCEd-lGCMwnQlle443FJJKuw",
"authorChannelId": {
"value": "UCEd-lGCMwnQlle443FJJKuw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-03-12T07:17:34Z",
"updatedAt": "2021-03-12T07:17:34Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "eiJG2XZ8yO6omawST9EZCno5WsY",
"id": "Ugw311MtgHcGKBP1Py94AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "KYR-FXzuCgCC6k2PZ6SsxtAHJb0",
"id": "Ugw311MtgHcGKBP1Py94AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"textDisplay": "I want to visit Montenegro or serbia soon",
"textOriginal": "I want to visit Montenegro or serbia soon",
"authorDisplayName": "A Kings Palace",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh0f4O7J5FcWrbyt1bnnXziFi0mI5y67qMsNmhDHg=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UC2A-A0pUG3Ur4rPcMytQPTQ",
"authorChannelId": {
"value": "UC2A-A0pUG3Ur4rPcMytQPTQ"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-01-01T04:27:00Z",
"updatedAt": "2021-01-01T04:27:00Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "v_GV-zb8pgvsaA15TUFgR8_9Kw4",
"id": "UgwrQD-UQaDvflowXW54AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "q4BwoNCfHtBixHPa0eOEWK14IXE",
"id": "UgwrQD-UQaDvflowXW54AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"textDisplay": "Meh happy I live right on the other side-",
"textOriginal": "Meh happy I live right on the other side-",
"authorDisplayName": "\ua9c1\u0f3a\u0274\u1d1c\u026a\u1d04\u1d07\u0f3b\ua9c2 \u2022 79 years ago",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwng_WDGAaQzi7Fsa9-aW_JVF0bqXP53AbN4Y0wJ9AQ=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCnNV7tSP_RDiSOdDnvWkvBA",
"authorChannelId": {
"value": "UCnNV7tSP_RDiSOdDnvWkvBA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2020-05-02T16:57:50Z",
"updatedAt": "2020-05-02T16:57:50Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "FFSCjYWsqpvNG1cN7htplpXfKYY",
"id": "UgwJyXzInnMC55exIgh4AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "FduydlagGlUG8OCs5A09K7jvz1U",
"id": "UgwJyXzInnMC55exIgh4AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"textDisplay": "KOTOR IS BEAUT!",
"textOriginal": "KOTOR IS BEAUT!",
"authorDisplayName": "MK Blogger Network",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnihtA5Fk-bZ7pmVX9ZS7bKAQwq-D2SsSrHu8w=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCcp3rxe1yJ0N4BEGUGRxf4Q",
"authorChannelId": {
"value": "UCcp3rxe1yJ0N4BEGUGRxf4Q"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-01-04T15:52:14Z",
"updatedAt": "2020-01-04T15:52:14Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "zkxi4TQQffuLDXyVugioJM4ohAo",
"id": "UgyJZMiQROTBPZPK_Y94AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "Mz1b1QGtVuMfMxvUh8UnBvrVUco",
"id": "UgyJZMiQROTBPZPK_Y94AaABAg",
"snippet": {
"videoId": "5FHMolROMZQ",
"textDisplay": "its sure beautiful",
"textOriginal": "its sure beautiful",
"authorDisplayName": "Our4feet Travelers",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnhc16dxKEuqX7V9DqrfMdVVXmwBpxj6-KSG9BweNA=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCuVudRxg3spgdauB6o_Mx_A",
"authorChannelId": {
"value": "UCuVudRxg3spgdauB6o_Mx_A"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2020-01-01T14:32:01Z",
"updatedAt": "2020-01-01T14:32:01Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
}
],
"gwdzE3XHKIQ": [
{
"kind": "youtube#commentThread",
"etag": "sAitdKL1G9Vig0goESL1NoyHWTE",
"id": "Ugwo66l_WwenmczJRch4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "SX_K6-_ZjkwDduonEW21BuUXVNE",
"id": "Ugwo66l_WwenmczJRch4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"textDisplay": "Very informative, Subha. You managed to give so much information in such a short video. Looking forward to visiting Nagaland.",
"textOriginal": "Very informative, Subha. You managed to give so much information in such a short video. Looking forward to visiting Nagaland.",
"authorDisplayName": "Gipson Dupati",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjE8lB30kEzUyEcEoP79bo4he-oyx-C0vgCQA=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCeQvtQkH44lk-3FiF5r00Iw",
"authorChannelId": {
"value": "UCeQvtQkH44lk-3FiF5r00Iw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 4,
"publishedAt": "2020-01-02T04:40:02Z",
"updatedAt": "2020-01-02T04:40:02Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "002ZtYddfWLMQp_sGVv6JIqfLRA",
"id": "Ugwv-cghH3Bbncvfc4Z4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "rDt4hGHWXue9DgtBs9GRYcp6xVk",
"id": "Ugwv-cghH3Bbncvfc4Z4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"textDisplay": "Sister' inner line permit process ki Nagaland lo manaki any reference vondala",
"textOriginal": "Sister' inner line permit process ki Nagaland lo manaki any reference vondala",
"authorDisplayName": "Nagesh Unduru",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwng-qrtV_Q_J5McTCIsfc2nhV4YIKw-UWLxmWw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UC8KgIx8BBLvcG5UQ7kN6dYg",
"authorChannelId": {
"value": "UC8KgIx8BBLvcG5UQ7kN6dYg"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-06-07T07:17:29Z",
"updatedAt": "2021-06-07T07:17:29Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "r6Etb39aLlNKjzQ8XFbDhSZj0Yg",
"id": "UgzsK1xgoE4V5KZSnbV4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "jBvSEa2sqxZdWjGi0Es2c7RgfWg",
"id": "UgzsK1xgoE4V5KZSnbV4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"textDisplay": "Flight lo nagaland velli nagaland lo car rent theesukoni thirugavachha",
"textOriginal": "Flight lo nagaland velli nagaland lo car rent theesukoni thirugavachha",
"authorDisplayName": "Sailu Sailu",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwngsIADFFMwCcKy-evFpV9qLN_H9oTRGGDgvXg=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCsNYhrd7mvQ6oNvi5hayo0A",
"authorChannelId": {
"value": "UCsNYhrd7mvQ6oNvi5hayo0A"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2021-05-29T08:18:58Z",
"updatedAt": "2021-05-29T08:18:58Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "Zrie9bZ9Y1S7d20PpP5-LA51r40",
"id": "UgyVkkqBQ5LFPoqtP1B4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "Wj3KR3995k0ya0xawjzIGFHQMqk",
"id": "UgyVkkqBQ5LFPoqtP1B4AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"textDisplay": "It's Awesome by seeing itself.",
"textOriginal": "It's Awesome by seeing itself.",
"authorDisplayName": "Vikramaditya Yechuri",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjLaAKTQmkiMg_SaYeggC02Q439bq3zTQP_TRoE=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UChuqG0hWjOWAppYghusNurA",
"authorChannelId": {
"value": "UChuqG0hWjOWAppYghusNurA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-05-03T15:47:31Z",
"updatedAt": "2021-05-03T15:47:31Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "CtxZ2qffJSRepAudg3lab0mP2Ag",
"id": "UgwF6CuuVPvUXojXwn54AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "1eFxJV_MCMMiSU57Zvb89R4oP4g",
"id": "UgwF6CuuVPvUXojXwn54AaABAg",
"snippet": {
"videoId": "gwdzE3XHKIQ",
"textDisplay": "\ud83d\udc4d\ud83d\udc4c\ud83d\udc90",
"textOriginal": "\ud83d\udc4d\ud83d\udc4c\ud83d\udc90",
"authorDisplayName": "Ravi R Babu",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh7_P81OLQax0FZBDSY7pztaR0O9nXSRvIhx613jw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCsgWK6B6pWsH330_vzd-ucw",
"authorChannelId": {
"value": "UCsgWK6B6pWsH330_vzd-ucw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-04-13T19:57:20Z",
"updatedAt": "2021-04-13T19:57:20Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
}
],
"csqfavq7-6o": [
{
"kind": "youtube#commentThread",
"etag": "4w4KJKESa8wOGFzIAVlvbyfSn6E",
"id": "Ugz0hDJH8Nyo7lNC1CV4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "9eLEURvpyftXVvmAfWCI8i4mdh4",
"id": "Ugz0hDJH8Nyo7lNC1CV4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"textDisplay": "Glad you made it. There are a few different ways to go up to Lion Rock. Next time try from MTR Wah Fu Station. You\u2019ll see the whole profile of Lion Rock. And when you are up there, look for the lion head spot. The place you were there was the lion tail spot.",
"textOriginal": "Glad you made it. There are a few different ways to go up to Lion Rock. Next time try from MTR Wah Fu Station. You\u2019ll see the whole profile of Lion Rock. And when you are up there, look for the lion head spot. The place you were there was the lion tail spot.",
"authorDisplayName": "Irene Wai",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnirJIQFhradyPN5oMlJRsS7H8loQ6awjyYVxw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCymlnA0bmIR2NUxSlgvpCNg",
"authorChannelId": {
"value": "UCymlnA0bmIR2NUxSlgvpCNg"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2021-03-28T03:24:59Z",
"updatedAt": "2021-03-28T03:24:59Z"
}
},
"canReply": true,
"totalReplyCount": 2,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "uomUDA6nHjOu8LPNCEQ-DfXRO7E",
"id": "UgyMpWg5hKh7MFddyd14AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "l5befkHk4_0ZWirjtdS5bn-taDs",
"id": "UgyMpWg5hKh7MFddyd14AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"textDisplay": "Best view in lion rock trail",
"textOriginal": "Best view in lion rock trail",
"authorDisplayName": "Thelma Speirs",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjbQOFgZbIwQw0u5OpLgvF3TwVIr2f67DOjLUkn7g=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCgyyZ0dLCz4w7aV9n0ad6Zw",
"authorChannelId": {
"value": "UCgyyZ0dLCz4w7aV9n0ad6Zw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-03-19T15:33:43Z",
"updatedAt": "2021-03-19T15:33:43Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "UO4O7tLtU8K6cXfPGqk_Fsx4B8I",
"id": "UgwphSJjVAnkvLQpyft4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "VPzNSQ__bvhV4bggQqYA4-92fvY",
"id": "UgwphSJjVAnkvLQpyft4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"textDisplay": "cool",
"textOriginal": "cool",
"authorDisplayName": "Saburuddin",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh9sHngMzEFM-mwNsfpoJVffy_QcBqZydqBEA=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCDPJms1dUcgNG8nAFDlINjA",
"authorChannelId": {
"value": "UCDPJms1dUcgNG8nAFDlINjA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2021-01-20T06:17:23Z",
"updatedAt": "2021-01-20T06:17:23Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "6IVj6MiH1i-5HVaTllf1GdfJFyk",
"id": "Ugya5kdYOTSGRksfA854AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "SwGWi3n4HbGLXAOK6LNeLHUSVDI",
"id": "Ugya5kdYOTSGRksfA854AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"textDisplay": "Nice \ud83d\udc4d",
"textOriginal": "Nice \ud83d\udc4d",
"authorDisplayName": "RAI explore",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnggRZQUvLZaFphn7TG2INn-If1zp_TyIYO-CsNFHQ=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCqW5yyMnSVBntUyvaxmnSxw",
"authorChannelId": {
"value": "UCqW5yyMnSVBntUyvaxmnSxw"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-11-27T14:30:14Z",
"updatedAt": "2020-11-27T14:30:14Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "8ZoXH0Zajw_R2IcyoAwLCF4qiKs",
"id": "UgxRTRAqDGTVRYX2iKB4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "okp4--zYTjj0g1TUd8sVghHOqT0",
"id": "UgxRTRAqDGTVRYX2iKB4AaABAg",
"snippet": {
"videoId": "csqfavq7-6o",
"textDisplay": "\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d",
"textOriginal": "\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d",
"authorDisplayName": "Carmz Channel",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnhHdGS0P5g7IGX2Vbaoj-K5X92WYBagVKNM0o4AGQ=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCJ59dacWlkH3hHkI76npW-w",
"authorChannelId": {
"value": "UCJ59dacWlkH3hHkI76npW-w"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2020-11-09T04:26:44Z",
"updatedAt": "2020-11-09T04:26:44Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
}
],
"I4Av246bOPU": [
{
"kind": "youtube#commentThread",
"etag": "ua2UL767E4GPqDzFm_7ox3hx7T8",
"id": "UgzIoHnqSfMSYzpcpyB4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "jc8_dt0nyfB8KGIyCR2MOShjDy0",
"id": "UgzIoHnqSfMSYzpcpyB4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"textDisplay": "It would be nice if you have introduced the girls!",
"textOriginal": "It would be nice if you have introduced the girls!",
"authorDisplayName": "Jad salem",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjmS67qkuEZq43t4wHbGf8P-n_Bji04dYeCbAEt=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UC5i7NhUpWXWWOfF9jfppwKQ",
"authorChannelId": {
"value": "UC5i7NhUpWXWWOfF9jfppwKQ"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-05-08T05:52:18Z",
"updatedAt": "2021-05-08T05:52:18Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "jWe-el3Go-5n_oE78gLYIryZiDU",
"id": "UgxUjlJZ3iAU98y7Z6J4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "aZCPAV7HpwpkbjRH3TsJibAsrCY",
"id": "UgxUjlJZ3iAU98y7Z6J4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"textDisplay": "as a person from Jordan I will till u that u had a hard time finding street food because u were in the wrong place",
"textOriginal": "as a person from Jordan I will till u that u had a hard time finding street food because u were in the wrong place",
"authorDisplayName": "Gaith Swafta",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnhGUTH3Rkv7M720Cay2VnNwtyI2-5_NghP08w=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCPO1eskpakgyOZrss9TO-sA",
"authorChannelId": {
"value": "UCPO1eskpakgyOZrss9TO-sA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-04-23T00:42:54Z",
"updatedAt": "2021-04-23T00:42:54Z"
}
},
"canReply": true,
"totalReplyCount": 0,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "jKpIJXAM74UvXWVCeb_0PlprRNY",
"id": "UgwuRrJIl8Kkgh9MX3p4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "aSLyXoW-pd5F1d8NfFPl0cMQHOg",
"id": "UgwuRrJIl8Kkgh9MX3p4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"textDisplay": "\u0627\u0644\u0627\u0631\u062f\u064a \u064a\u0648\u0642\u0641 \u062c\u0645\u0628\u064a",
"textOriginal": "\u0627\u0644\u0627\u0631\u062f\u064a \u064a\u0648\u0642\u0641 \u062c\u0645\u0628\u064a",
"authorDisplayName": "layan and banan",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnjlIj-nTvv9hLXy7TW_1adotdKZKQ5YzDGgazY5Mw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCgjM0U1kqokj2AY562aDJqg",
"authorChannelId": {
"value": "UCgjM0U1kqokj2AY562aDJqg"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 1,
"publishedAt": "2021-01-21T05:12:04Z",
"updatedAt": "2021-01-21T05:12:04Z"
}
},
"canReply": true,
"totalReplyCount": 2,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "zSdMCi2RqoQ0q2WgrGGKkLairgI",
"id": "UgxluxfTJ6mcb7MXfBZ4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "KmBPVc-OPpiI83ZmKJviaurKTzQ",
"id": "UgxluxfTJ6mcb7MXfBZ4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"textDisplay": "Nice Video and amazing guy,",
"textOriginal": "Nice Video and amazing guy,",
"authorDisplayName": "Hany Refai",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwniUJN6L68RETlUu05QhOMB1PyvtDOHug2tCAw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCaopof6Nb9USrlc4VPfplIg",
"authorChannelId": {
"value": "UCaopof6Nb9USrlc4VPfplIg"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-01-03T12:53:21Z",
"updatedAt": "2021-01-03T12:53:21Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
},
{
"kind": "youtube#commentThread",
"etag": "B9FS_PI73DBy9P2DwEouYc9Q1uk",
"id": "UgxyoLqxtA_yD9i4dnJ4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "kNFtGLINQ7AsbVcL3Z2mtXRja3k",
"id": "UgxyoLqxtA_yD9i4dnJ4AaABAg",
"snippet": {
"videoId": "I4Av246bOPU",
"textDisplay": "Kunafe",
"textOriginal": "Kunafe",
"authorDisplayName": "Kareema After Addiction",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnhmwTISnBUlAZkBhJ1f-yQOZsKQPUkTCatlp_v5Jw=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UC0TyWejuAAYVt-QHVv8zkHA",
"authorChannelId": {
"value": "UC0TyWejuAAYVt-QHVv8zkHA"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2020-12-08T12:35:07Z",
"updatedAt": "2020-12-08T12:35:07Z"
}
},
"canReply": true,
"totalReplyCount": 1,
"isPublic": true
}
}
],
"Vnu8Un1gvJ4": [
{
"kind": "youtube#commentThread",
"etag": "20Nxoa8NKanHuzQyP7VSv731gUE",
"id": "UgzabyEV_EYs3jj1G-t4AaABAg",
"snippet": {
"videoId": "Vnu8Un1gvJ4",
"topLevelComment": {
"kind": "youtube#comment",
"etag": "jzg8SYVyPGJrpSHzCMyGKU7MAG0",
"id": "UgzabyEV_EYs3jj1G-t4AaABAg",
"snippet": {
"videoId": "Vnu8Un1gvJ4",
"textDisplay": "Bro srilanka la <a href=\"http://irunthu.work/\">irunthu.work</a> visayama varalaam nu irukuran salary and work ellam epdi bro",
"textOriginal": "Bro srilanka la irunthu.work visayama varalaam nu irukuran salary and work ellam epdi bro",
"authorDisplayName": "nimal niccolas",
"authorProfileImageUrl": "https://yt3.ggpht.com/ytc/AAUvwnh7pvblaMWajOSxLk9G8wLLm7u3wOQtfLuBR4Gp=s48-c-k-c0x00ffffff-no-rj",
"authorChannelUrl": "http://www.youtube.com/channel/UCcgv8AsOARDN3Q7L4un0roQ",
"authorChannelId": {
"value": "UCcgv8AsOARDN3Q7L4un0roQ"
},
"canRate": true,
"viewerRating": "none",
"likeCount": 0,
"publishedAt": "2021-05-08T13:01:59Z",
"updatedAt": "2021-05-08T13:01:59Z"
}