-
Notifications
You must be signed in to change notification settings - Fork 0
/
insta.json
1173 lines (1164 loc) · 76.5 KB
/
insta.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
// 20190204220259
// https://www.instagram.com/darbadarTrails/?__a=1
{
"logging_page_id": "profilePage_2301755000",
"show_suggested_profiles": false,
"graphql": {
"user": {
"biography": "See the world through the eyes of 2 Indian women travellers & friends.\nRead about Harsha’s experience of traveling across Europe:",
"blocked_by_viewer": false,
"country_block": false,
"external_url": "https://www.darbadar.com/stories/2019/02/looking-back-at-a-year-of-living-and-travelling-across-europe-i/",
"external_url_linkshimmed": "https://l.instagram.com/?u=https%3A%2F%2Fwww.darbadar.com%2Fstories%2F2019%2F02%2Flooking-back-at-a-year-of-living-and-travelling-across-europe-i%2F&e=ATM6woa1LSwjbsC7mvayGj8rofE_iASpVBtIYzDMN-wqKTV1vWf3w8VNwcwd5qIo2wUOclozltumXFvV",
"edge_followed_by": {
"count": 835
},
"followed_by_viewer": false,
"edge_follow": {
"count": 141
},
"follows_viewer": false,
"full_name": "Darbadar Trails",
"has_channel": false,
"has_blocked_viewer": false,
"highlight_reel_count": 1,
"has_requested_viewer": false,
"id": "2301755000",
"is_business_account": true,
"is_joined_recently": false,
"business_category_name": "Creators & Celebrities",
"business_email": "[email protected]",
"business_phone_number": "",
"business_address_json": "{\"street_address\": \"\", \"zip_code\": \"\", \"city_name\": \"\", \"region_name\": \"\", \"country_code\": \"\"}",
"is_private": false,
"is_verified": false,
"edge_mutual_followed_by": {
"count": 0,
"edges": [
]
},
"profile_pic_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/a455a7d1dc1984d7e14d234276d99742/5CFDAABC/t51.2885-19/s150x150/44856261_2246546115624633_498632904063057920_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"profile_pic_url_hd": "https://instagram.famd5-1.fna.fbcdn.net/vp/721fe2f866a03e62c167a29984c851a9/5CF17C4C/t51.2885-19/s320x320/44856261_2246546115624633_498632904063057920_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"requested_by_viewer": false,
"username": "darbadartrails",
"connected_fb_page": null,
"edge_felix_combined_post_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_felix_combined_draft_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_felix_video_timeline": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_felix_drafts": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_felix_pending_post_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_felix_pending_draft_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": [
]
},
"edge_owner_to_timeline_media": {
"count": 391,
"page_info": {
"has_next_page": true,
"end_cursor": "QVFEY0U1d1hWWkdGMWlMOG5ZWE1mSHNrajhHbjU3V3RJZHQwenJwYkhGeWMtOGdkb21GUzZaZmdmNEkxcnl1WHJxekNhUEt6RWM3NGk3cHRNLTFBTEhZcQ=="
},
"edges": [
{
"node": {
"__typename": "GraphImage",
"id": "1971945894040773343",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Hey, you! How is it going? Except for a terrible cold that kept me awake at nights for the entirety of last week, I have been as bright as a moonless night.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\nThe school continues to inspire and frustrate me in equal amounts. (For those of you who have no idea what I am talking about…I moved to Cherrapunjee a couple of months back to help run a school that operates out of two rooms, one until last year.)\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\nMeanwhile, I have grown into my village life and embraced fully its warts and hirsutism. But this post is not about my drab village life at all. It is about Harsha’s scintillating stay in Europe last year. If the excerpt above made you curious, head to our blog now to read the first part of Harsha’s adventures across Europe. (Link in bio.)\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\nAlso, you bunch are a terribly silent lot. Or is it that I talk too much? We would love to hear from you, you know? (Okay not love, like-ish.) My hands are freezing and can only be cured by the charcoal fire in the kitchen. Gotta go, ciao!\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarineurope #womenbackpacker #travel #storytelling #womentraveler #writersofinstagram #travelblog #writerssociety #europe #travel #solowomentraveller #travelstory #readersofig"
}
}
]
},
"shortcode": "BtdwlfClyLf",
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1549294290,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/89ab699f55881353685eb4d8f7344a8f/5CDF508B/t51.2885-15/e35/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 8
},
"edge_media_preview_like": {
"count": 8
},
"location": {
"id": "277766102",
"has_public_page": true,
"name": "Europe",
"slug": "europe"
},
"gating_info": null,
"media_preview": "ACoq6Nm29ifpTfM/2W/L/wCvSTY4zj8c/wBKhyv+z+TUAWPM/wBlv8/jR5n+y36f41XwP9n8moGAeNuRz0agC5RUUbluuPwB/rUtAEMpIxj+YH86jJPv/wB9CpJRnH/xOf8A9VRY9j/3wKAFyfU/99CgE9CTj/eFGPr/AN8UmD0wf++BQBaAwPWlpiNkd+PUYp9ADWQN17U0RqpyP5mpKKACiiigAooooA//2Q==",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/b78d4f3b487b0c518562868ef9c9831b/5CE4006E/t51.2885-15/sh0.08/e35/s640x640/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/4159b5c17caee79b876c15061cd01201/5CE579C9/t51.2885-15/e35/s150x150/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/33d6b698a4daa4805441f5435ee2ebe1/5CE33483/t51.2885-15/e35/s240x240/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/adc4518fabb54b71c6e1328fb810b19f/5CE43F39/t51.2885-15/e35/s320x320/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/93e5568ce059c438a1f250d5eee52251/5CDDD963/t51.2885-15/e35/s480x480/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/b78d4f3b487b0c518562868ef9c9831b/5CE4006E/t51.2885-15/sh0.08/e35/s640x640/50094084_2210534372541576_379523430480722359_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: text"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1966885380691321018",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Harsha and I had spent that morning hiking down to the Nohkalikai Falls and lazying next to the gushing waters for several hours. We returned shortly before sunset and proceeded to wander in the vicinity to neither knew where. Once it was established that we were both hopelessly lost in a massive wasteland with no one else for company, we decided to act our collective mental age of nine.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n{We were attempting, very seriously, to take a picture of us jumping together because it sounded like a great idea then. In the process we discovered that neither can perform the said act with an iota of grace.}\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographs by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #darbadar #darbadartrails #darbadarinmaharashtra #womentraveler #travel #selfportrait #portraitphotography #traveller #photographer #portrait #SoFeTravel #pune #girlslovetravel #gltlove #punetraveler #therealme #outdoorportraits #travelbloggerportrait #travelblogger #femaletraveler #candid_photography"
}
}
]
},
"shortcode": "BtLx9UuA-C6",
"edge_media_to_comment": {
"count": 0
},
"comments_disabled": false,
"taken_at_timestamp": 1548691030,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/e11728c168b5438c9dd662131552089a/5CEB6AA0/t51.2885-15/e35/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 123
},
"edge_media_preview_like": {
"count": 123
},
"location": {
"id": "301429261",
"has_public_page": true,
"name": "Cherrapunjee, Meghalaya, India",
"slug": "cherrapunjee-meghalaya-india"
},
"gating_info": null,
"media_preview": "ACoq15r9IiR1IYLj6n+lLHfI+7nld35L3pssFsWJkAyzAck8senGetLFBb8lFA+8p5P0Pf8AWgCvLf4LFDwEyPXdu9x6VbN5HtDA8E4z+Gag+z2gyMDKgEjJOB6kZ6VKbaAKF2jbnPU9cdevp+FLUCumpBiu75c7s8ehwPf5vxrVU5AI71mpb2jY2qCGBIOTyBwcHPatFQAAB0A4pgZk2nCVy+/Hzbhx0/Wli04RkneTuDA5H94detRXEV08uVGUViw5UZ4wKdAl0i7GHAQgHI644pANGljkeZ97qAB6fWpG04eV5ZfgEnJHbGCOv61US2uxJ5m3nOeWH93bjFWXW6MWMZYsQRlfukcfr+NAxi6YGAxKTtGBgDHIHv8ASthF2qB1wAKwreC7gQqqgdO69gB6+1bqZ2jd1wM/WgRg6heurbEJUq2Dg9RiriagHJAB4Vm/IZrTwKMCgDnYtRYTkkkoRwM9CQP6j9aty3+YtwBXJK5zyDtyDWttHpS7R6UDMC11IrH+8yzZJz/npit5G3KG9QD+dLtHpRTEf//Z",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/a90d0c0c6cd32244d9bd18f742cb3fa3/5CF0AA45/t51.2885-15/sh0.08/e35/s640x640/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/6472c81132c248e7a5fcb04a47024d46/5CEC19E2/t51.2885-15/e35/s150x150/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/2d6f1c7aaa44a2adf78951fd325a796e/5CEBACA8/t51.2885-15/e35/s240x240/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/d87d115ccd405094eb73bd9820680592/5CDCB512/t51.2885-15/e35/s320x320/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/9c01afdfd26c7c8a0ba9a335eba853c2/5CE79548/t51.2885-15/e35/s480x480/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/a90d0c0c6cd32244d9bd18f742cb3fa3/5CF0AA45/t51.2885-15/sh0.08/e35/s640x640/49858318_126059581776805_7724835587377296433_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: one or more people, outdoor and nature"
}
},
{
"node": {
"__typename": "GraphVideo",
"id": "1963959489904337679",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "After spending a week in Pune, hurried meetings with a bunch of friends and a lot of unfinished business, it’s time to head back to Cherrapunjee.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nI wish I could ogle some more at the starched bougainvillea lining the roads everywhere in the city, those defiant bursts of oranges and pinks against structures of concrete and greed. I wish I could hold this city a little less dearer. I wish so much more...\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n*\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nI shot this timelapse in Cherrapunjee a fortnight ago. Behind the house is a playground where the three children and I often play at sunset. Here we are playing the pungent game “Who give gas?”\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nHow do you think this game is played? 😂\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nVideo by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #natgeotravel #bbctravel #cntgiveitashot #letsgowonder #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #meghalayatourism #meghalaya #incredibleindia #timelapse #canon80dtimelapse #canonindia_official\n@discovermeghalaya @discover.northeast @northeast_india #sunset @gameoftones"
}
}
]
},
"shortcode": "BtBYsAlAWMP",
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1548342640,
"dimensions": {
"height": 750,
"width": 750
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/3790674ad279a507367887c7b0ab4b38/5C5A7C50/t51.2885-15/e35/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 69
},
"edge_media_preview_like": {
"count": 69
},
"location": {
"id": "301429261",
"has_public_page": true,
"name": "Cherrapunjee, Meghalaya, India",
"slug": "cherrapunjee-meghalaya-india"
},
"gating_info": null,
"media_preview": "ACoq6aisXz5Om4/nTjO2OWI/GtORkcxsUVki4IH3iTS+ew53GjkYcxq0VmGVwMgn8aj89/U/nRyBzDGiHUEH9KiZCOtWzeQDrj8SP8aje+tcctj6c1PtO6Y+UrMc8elPAHeolu7dj98ge4I/pSm6thxlm+g4qvaL+kLkZYDDGO3vS5HrVI3sK/dRm+pxUP8AaLf88k/8epc6/qw+VnS/ZYf7if8AfI/wo+zQ/wBxP++R/hU9FQUQfZov7if98j/Cj7NF/cT/AL5H+FT0UAQ/Z4v7i/8AfI/wo+zxf3F/75H+FTUUAf/Z",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/d4883bb1ed7cdf95fe75d3b6e6f3d28a/5C5A7A6A/t51.2885-15/sh0.08/e35/s640x640/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/7c327130af10e2bea932232d9ad0eb62/5C5B48EF/t51.2885-15/e35/s150x150/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/65b4d729c1293ec8374691a6a4ae28e9/5C5B3BA9/t51.2885-15/e35/s240x240/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/55a184813f101902868eea5142d83bd7/5C5AFDD7/t51.2885-15/e35/s320x320/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/b3b2aa32e4dd551483edb422b283772f/5C5B5490/t51.2885-15/e35/s480x480/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/d4883bb1ed7cdf95fe75d3b6e6f3d28a/5C5A7A6A/t51.2885-15/sh0.08/e35/s640x640/49667539_1226668934166813_5379580906876218825_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": true,
"video_view_count": 254
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1962536837872366209",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "It all started with a simple thought, my decision to move to Cherrapunjee, Meghalaya. I found a school on my visit to the state in November 2017 – a single-room structure striving to change the lives of children from poor families. I knew I had to return.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nBefore I embarked on that 1-month long trip through Meghalaya & Nagaland, I had been thinking – why do I see the world like I do? Why do I see poverty & suffering before I do monuments & beauty & history? Why do I see first what is wrong before I focus my eyes on the right? And why, if the wrong bothers me so, do I not make it right?\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nMy close friends know, vaguely, the great discomfort I experience every time I see children not having access to education. After I left my first job barely 9 months in, I applied for the Teach For India 2-year fellowship. In spite of being chosen for the job, I was advised to turn down the offer as I was on medications for epilepsy at the time. So I volunteered with them instead. I left after a year, disillusioned by their objectives.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nBefore that & after, irrespective of where life has placed me - as a high school student, a college graduate, or now, as a freelance writer & photographer struggling to keep the wallet merry, the desire to see the world as more than just the sum of my needs remains the same.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nOn both personal & professional fronts, I continue to be overwhelmed, uncertain & terrified. I go back still to Cherrapunjee to finish what I started. To be honest, professionally, it is the worst possible move. I won’t pretend that everything is okay. My life of 30 years is disintegrating rapidly.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nBut happiness does sneak in every now & then, like on this mountain in Kongthong village in East Khasi Hills where I danced with locals and sang till my voice turned hoarse on New Year’s Eve under the watchful eye of the Milky Way.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#lonelyplanetindia #natgeotravel #bbctravel #cntgiveitashot #roadlesstraveled #ChaloNortheast #travel #WhereIsNortheast #meghalayatourism #meghalaya #incredibleindia #7sistersindia #canonindia_official #northeastindia #nightphotography #hippieinhills #mesmerisingmeghalaya #womenbackpacker"
}
}
]
},
"shortcode": "Bs8VNsoADKB",
"edge_media_to_comment": {
"count": 1
},
"comments_disabled": false,
"taken_at_timestamp": 1548172643,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/75444c7e59d2de214a7942e5bf19a998/5CE7ED9B/t51.2885-15/e35/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 67
},
"edge_media_preview_like": {
"count": 67
},
"location": {
"id": "410497221",
"has_public_page": true,
"name": "Meghalaya",
"slug": "meghalaya"
},
"gating_info": null,
"media_preview": "ACoq6aiuCmuZhIwDuBub+I+p96i+1Tf89H/76b/GgD0KivPvtU3/AD0f/vpv8aPtU3/PR/8Avpv8aAPQaK89+1Tf89H/AO+m/wAa6KCVzGhLMSVXufQUAc5P/rX/AN5v5mo6lnx5j8/xN/M0sURkBIHA6k9PzzSuUlchpQuamCY6gf0zjPuaurbELgYYkbuCOAfX096tJPdkmYRXR2/+qT/dX+Qrn3BQkeldBb/6pP8AdX+QpMDYNhbk5MaEnk/KKPsFv/zzT/vkVbopAVP7Ptv+eaf98ij7Bbf880/75FW6KAKn2C3/AOeaf98ipRbxgYCqAOnAqaigD//Z",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/04e3a59ffcbe55f54a4cedcc262a5dfe/5CF9377E/t51.2885-15/sh0.08/e35/s640x640/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/318ade5e08b74e90a0ed6b8ba8451b65/5CF1E4D9/t51.2885-15/e35/s150x150/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/40aa364b973261d836861d5a0ed1e10e/5CFAD793/t51.2885-15/e35/s240x240/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/47079fd31c4db4c2a3e8d01a257dde9b/5CFD8D29/t51.2885-15/e35/s320x320/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/61cceeded2b4cc1d52400b9e0e535cbe/5CE9C273/t51.2885-15/e35/s480x480/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/04e3a59ffcbe55f54a4cedcc262a5dfe/5CF9377E/t51.2885-15/sh0.08/e35/s640x640/49531837_272863323410745_4103298316929813547_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: night"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1959618592194568958",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "This is my balcony in Cherrapunjee. No, really. It has been a month of waking up to this. But sunrises, however stunning, are no panacea.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nLife in these mountains is not easy, not even for those who have taken their first steps here. The lands are barren, the cold unforgiving and the money, nowhere. Sunrises, however gorgeous, can’t remedy a hungry stomach. Waterfalls, however scintillating, cannot fill holes in a flimsy blanket.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nI find it almost tragically funny when people tell me - “I will kill for this view.” They have no idea, very often, it’s the view that kills you.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographs by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #meghalayatourism #meghalaya #incredibleindia #canonindia_official\n@discovermeghalaya @discover.northeast @northeast_india #sunrise @gameoftones"
}
}
]
},
"shortcode": "Bsx9rojAiL-",
"edge_media_to_comment": {
"count": 11
},
"comments_disabled": false,
"taken_at_timestamp": 1547824761,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/0de190c72a8d3431183f261e03587ae3/5CE949D0/t51.2885-15/e35/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 198
},
"edge_media_preview_like": {
"count": 198
},
"location": {
"id": "301429261",
"has_public_page": true,
"name": "Cherrapunjee, Meghalaya, India",
"slug": "cherrapunjee-meghalaya-india"
},
"gating_info": null,
"media_preview": "ACoq6LzU/vD8xR5qf3h+YqkYckn3NMMNGgtTQ85P7w/MUecn95fzFZphpvk1VkK7NPzo/wC8v5inB1PII/OsgwVcRMKB7CiyBNjPtQDFMjPNMkutgzXPyvmRhnncw/U1Jv4HOQPXiuWzRvdGkb2TrgAe+ajN87YC7TnvzWVLMD15x0FEAZzuPAAz7f59PWqsw8i7JeSyKQCAG4Jx271rQysY15/hHY+lYca/IDz06j/CtqFv3a8/wjt7VSEx39kQ5Jy2WJJ5Hc59KadHhP8AE/5j/CtairsiLmONEgBBy/HPUf8AxNTDSogMZYjOTkjn68VpUUWQXZmjS4l4BYD6j/CrS2yqAATwMf54qxRRYLn/2Q==",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/21b966d7f9580f83722ddeb9d9c5561b/5D000C35/t51.2885-15/sh0.08/e35/s640x640/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/b4bdd89e510140330bb0583dde7cd7de/5CF09C92/t51.2885-15/e35/s150x150/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/89d4652d7fd9d29a93140a7eb35d95a3/5CEE2DD8/t51.2885-15/e35/s240x240/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/d1433c999b87daf778dfcc856f750201/5CDD7E62/t51.2885-15/e35/s320x320/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/10ca8bc8c0a9c6d71b8a2940e9d8f174/5CE38438/t51.2885-15/e35/s480x480/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/21b966d7f9580f83722ddeb9d9c5561b/5D000C35/t51.2885-15/sh0.08/e35/s640x640/50051955_372279386899906_6379698867897165644_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: sky, bridge, tree, outdoor and nature"
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "1958156272733945927",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Light is more than just a vital accessory for photography, I have learnt over the years. It is a remarkable agent for transformation; the difference between sublime and loud, something worth chasing while travelling even if photography is not your objective.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nHarsha and I started hiking towards this waterfall at sunrise. Surrounded by mountains, it takes a while after sunrise for the light to strike the waterfall. I knew this as I visited the same waterfall a year back.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nHuffing and panting, we reached nearly an hour and a half later and finally scampered down a cliff to seat ourselves on a massive rock. The chill in the air was unbearable. Water gushing all around us, we watched spellbound as sunlight kissed the head of the waterfall and then the rest of it with unwavering passion. Then it found us too and put an end to our chicken skins and numb fingers.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nThe show lasted for nearly 2 hours. Needless to say, there were no dull moments.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographs by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #waterfall #meghalayatourism #meghalaya #incredibleindia #canonindia_official\n@discovermeghalaya @discover.northeast @agameoftones @northeast_india"
}
}
]
},
"shortcode": "BssxMFbAoBH",
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1547650439,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/a10bde16d5dcfa99def693839eb2cdaa/5CF03023/t51.2885-15/e35/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 74
},
"edge_media_preview_like": {
"count": 74
},
"location": {
"id": "125788964841593",
"has_public_page": true,
"name": "Nongriat",
"slug": "nongriat"
},
"gating_info": null,
"media_preview": null,
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/3c3db26c7e6820814c2ad08dfa951030/5CE2AFC6/t51.2885-15/sh0.08/e35/s640x640/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/c2b8c4d141cb7b71e05f0f33bdf5e416/5CE28B61/t51.2885-15/e35/s150x150/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/e7d7fc1c812572fdd3e04653c0862df3/5CF60E2B/t51.2885-15/e35/s240x240/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/35c6c121518407061ffbae27ecd6ba4a/5CE7A091/t51.2885-15/e35/s320x320/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/48e32104999cdfa4ee3bc41987252a06/5CF033CB/t51.2885-15/e35/s480x480/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/3c3db26c7e6820814c2ad08dfa951030/5CE2AFC6/t51.2885-15/sh0.08/e35/s640x640/49462883_383436575795225_3818802824619570146_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: outdoor, water and nature"
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "1956730589646248968",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Bliss is often a function of deceptively simple moments such as this - looking up at the sky as clouds imitate you, floating in waters as pristine as yours, all notions of directions and destinations laid on gravity’s shoulders. Maybe someday we will learn to float in life just the same, put to rest those arms tired of swimming through waters murky. Maybe someday our waters will find some clarity too.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographs by @trishnamohanty and @harshapc.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #waterfall #meghalayatourism #meghalaya #incredibleindia #canonindia_official\n@discovermeghalaya @discover.northeast @agameoftones @northeast_india"
}
}
]
},
"shortcode": "BsntBqlAVwI",
"edge_media_to_comment": {
"count": 8
},
"comments_disabled": false,
"taken_at_timestamp": 1547480485,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/b69cfc63bb0ccba50b34a40a59655dd5/5CE7698C/t51.2885-15/e35/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 115
},
"edge_media_preview_like": {
"count": 115
},
"location": {
"id": "125788964841593",
"has_public_page": true,
"name": "Nongriat",
"slug": "nongriat"
},
"gating_info": null,
"media_preview": null,
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/dc471c8bfe0145d70b195383cced7c24/5CF45669/t51.2885-15/sh0.08/e35/s640x640/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/ab2f26cb12af26fd4f5850edf43de5d2/5CE929CE/t51.2885-15/e35/s150x150/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/fa0fc4be8c845d5e0e26ff898b1a277b/5CF5E684/t51.2885-15/e35/s240x240/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/9c849c8d0025826be9b171aea692f352/5CDDD93E/t51.2885-15/e35/s320x320/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/6cb2aabe8b4d59f2e3122f19c257d569/5CE01364/t51.2885-15/e35/s480x480/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/dc471c8bfe0145d70b195383cced7c24/5CF45669/t51.2885-15/sh0.08/e35/s640x640/49514480_280752742614524_3857476685727840748_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: outdoor, nature and water"
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "1955275517230135553",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "From looking at these waters a year back with the wonder of an infant, I now live a stone’s throw away from them. I have now seen waters just as crystal many a times all over this utopia misspelt as Meghalaya, watched the sun gurgle in them, swam in those waters from Shakespeare’s dreams till my arms ached and yet my visceral response to the sight has not changed - one of overwhelming bliss.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographs by @trishnamohanty and @harshapc.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #waterfall #meghalayatourism #meghalaya #incredibleindia #canonindia_official\n@discovermeghalaya @discover.northeast @agameoftones @northeast_india"
}
}
]
},
"shortcode": "BsiiLkyhTkB",
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1547307027,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/9a175c33cdd2e5cffd4d3b4c8fff3c54/5CF4A8D7/t51.2885-15/e35/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 102
},
"edge_media_preview_like": {
"count": 102
},
"location": {
"id": "125788964841593",
"has_public_page": true,
"name": "Nongriat",
"slug": "nongriat"
},
"gating_info": null,
"media_preview": null,
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/2cb09a9ca3bc22e2c9e614c4b47401f6/5CEC1732/t51.2885-15/sh0.08/e35/s640x640/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/8f4d9d58acbc0fe8bffcddbf60ec1bac/5CE69095/t51.2885-15/e35/s150x150/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/85243c2f2642f085a3e780cd4d240c9f/5CF201DF/t51.2885-15/e35/s240x240/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/8dd4292aba504657d1b5633860138f7a/5CE0E365/t51.2885-15/e35/s320x320/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/2d1de79aae89e3d44bca4e6c13d46eec/5CF5353F/t51.2885-15/e35/s480x480/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/2cb09a9ca3bc22e2c9e614c4b47401f6/5CEC1732/t51.2885-15/sh0.08/e35/s640x640/47694771_298004297567862_2689366744037157669_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: outdoor, water and nature"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1953861537592578439",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "One year. I watched the sun rise from the same spot exactly a year back. What has changed since? A lot.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nNongriat’s greatest export to the travel industry - Jinkieng Nongriat, known widely by its moniker Double Decker Living Root Bridge - is under siege by idiots.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nThe waterfall that runs behind it sits filthy. I spotted 3 plastic wrappers of various eatables floating in the water. On my last visit a little over a year back, I used to bathe in the same waters everyday. (I spent a little under a week in the village back then.)\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nOn our second night of stay this time around, Harsha and I watched as a group of men sat on the lower deck of the bridge at night in the dark smoking joints.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nThe hike down to the village has amassed a lot of litter in a year too - beer bottles, mineral water bottles, packets of chips and chocolates.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nAs I watched the sun turn the bridge into a monument of gold once again, I wondered, how long before it all becomes just a memory.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographed by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #indianBucketList #MyPixelDiary #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #northeast_india #roadlesstraveled #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya #forestsofindia\n#doubledeckerbridge\n\n@discovermeghalaya @discover.northeast @agameoftones @northeast_india"
}
}
]
},
"shortcode": "BsdgrdogRGH",
"edge_media_to_comment": {
"count": 4
},
"comments_disabled": false,
"taken_at_timestamp": 1547138467,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/150a1c179f87019dd391909749610764/5CE7E348/t51.2885-15/e35/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 79
},
"edge_media_preview_like": {
"count": 79
},
"location": {
"id": "125788964841593",
"has_public_page": true,
"name": "Nongriat",
"slug": "nongriat"
},
"gating_info": null,
"media_preview": "ACoq3/tMWcb1yPcU7z4+u5fzFc1jl/lBO48/j0ppXA+U47YPUfX2oA6T7VD/AH1/76FH2uD++n/fQrlnXnnk+oqErgZ6nOP6VNxnX/a4f76f99CpBKhGQRg+9cptREBIOf8AP6Vpwu3lr/uj+VO4jIMpDsoB+82efc/0q1bhSRms5+JGP+0f5mrSSALwee/+e9JlGlcpEfu5z7CsqTg84/xqcvnqT+VVJmJpLUBzXYYYbk/yFbMLkxqf9kfyrmQMmuhg/wBWv+6P5U7CLTaLCxJJf5iT1Hc59KemkRKc7nOPcf0FalFUIz202JumR9Mf4VAdGiP8T/p/hWvRSsBjjRIR0Z/zH+FWksERQoLcADt2/Cr1FMD/2Q==",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/fe911ced3ba1ab6145ea3488032fcdf6/5CF6BCAD/t51.2885-15/sh0.08/e35/s640x640/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/59ff1d7b1a40e24f274786763ab195ef/5CE8A30A/t51.2885-15/e35/s150x150/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/6c1ccf2db4429a17ce0f1539a91f8496/5CF66040/t51.2885-15/e35/s240x240/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/1e560668e76e1c07cb71c030a7141857/5CDF3FFA/t51.2885-15/e35/s320x320/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/1945e8478ef5bf507b7c02af85461893/5CDA8DA0/t51.2885-15/e35/s480x480/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/fe911ced3ba1ab6145ea3488032fcdf6/5CF6BCAD/t51.2885-15/sh0.08/e35/s640x640/47692413_334565827393266_9134353682138848431_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: tree, sky, outdoor and nature"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1950922906850594808",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Meghalaya has an astounding number of waterfalls, most of which remain hidden from the sight of the quintessential tourist unwilling to see beyond travel guides and the obvious.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nI have had the privilege of hiking to many of these waterfalls and sharing with locals some of their best-kept secrets, each one more incredible than the last.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nHowever, it has rarely ever been about reaching just the waterfall, the hike themselves have been rewarding with their great abundance of virgin forests and weathered cliffs such as this, the story of time embedded on its coarse skin, a story hundreds of years in making.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nImagine the water punching holes in the face of the rocks for centuries, one unkind cut at a time, unrelenting, unforgiving. Imagine how many monsoons passed before shaping this cliff so. Imagine roots of trees uprooting in the storm. Imagine looking up into the sky, drops of icy-cold water slamming into your face, shoes struggling to get a grip on the forest floor covered in moss as you imagine so much and more. Do you hear it now, the story I once heard?\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographed by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails #darbadarinnortheast #womenbackpacker #travel #indiashutterbugs #indiapictures #instagood #igr_india #northeastindia #india_clicks #lonelyplanetindia #7sistersindia #hippieinhills #desi_diaries #natgeotravel #indianBucketList #MyPixelDiary #bbctravel #cntgiveitashot #letsgowonder #wishiwasthere #waterfalls #northeast_india #roadlesstraveled #hitchhiker #ChaloNortheast #WhereIsNortheast #mesmerisingmeghalaya"
}
}
]
},
"shortcode": "BsTEgwfAI_4",
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1546788155,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/19584cceb56ebf359778c8886ed2b6e6/5CDE040D/t51.2885-15/e35/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 82
},
"edge_media_preview_like": {
"count": 82
},
"location": {
"id": "317740395",
"has_public_page": true,
"name": "Cherrapunji, India",
"slug": "cherrapunji-india"
},
"gating_info": null,
"media_preview": "ACoq6Gb/AFbY/un+VcotxIvJZiB3yT/n8a6uY4jb/dP8q5LPy4xtqGNFyW6TyRhmMj5zg8qeP09Me9Y7TSYxub1+8f8AGpwnOemKiZPloCx0uiOz2+WJJ3t1OfStesfQx/o3/A2/pWxViIbj/VP/ALrfyNcPHKSADz9f6H/Gu4uP9U/+638jXBox+v6GpY0W1IP9f/1jih4icEnjsM9Pr6/hTIgVGcZz68D8f/1USSqFOMFu/wDn29qkfqdLo3+oOf77f0rVrJ0Vi1vk8fMf6VrVoSQ3P+qf/db+RrgRGx+legyDKkH0P8qw1gj/ALq9/wCEf4UmBgkNgAHAAAP+fxpGRc/KAMfia6DyIyOVX/vkf4UGCP8AuL/3yP8ACkMsaKc2/wDwNv6VrVUskVI8KABk8AYq3VCP/9k=",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/0ffa0169f0e6794bd62758d8adbcf0fe/5CF3EFB7/t51.2885-15/sh0.08/e35/s640x640/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/273c5ca4b68ec0eabf54f93e58d6855a/5CFCAE32/t51.2885-15/e35/s150x150/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/1c3215036f06f31cf507644829a4e194/5CF81B34/t51.2885-15/e35/s240x240/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/d472e1a0c8483ac52e3b81b7119c7e57/5CFA994A/t51.2885-15/e35/s320x320/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/a18d72bb18fab24f8d9f041d303acf17/5CED500D/t51.2885-15/e35/s480x480/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/0ffa0169f0e6794bd62758d8adbcf0fe/5CF3EFB7/t51.2885-15/sh0.08/e35/s640x640/47583508_1212372705579301_7705494415931401209_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: one or more people, outdoor and nature"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1948775367233773083",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "A little over a month and half back, Harsha and I set out from Pune to travel through Meghalaya and Arunachal Pradesh for three weeks, an adventure that I would summarize as being as wickedly magical as a child’s imagination. A chain of events most deliciously serendipitous led us to the Indo-China border via the easternmost edge of India in Arunachal Pradesh. We were both made privy to information that can potentially be a threat for national security if made public and so it is that we both shall forever hold our silence. (I won’t lie though that the exercise of keeping this phenomenal secret is giving me peptic ulcers.)\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nBut first, let’s talk about Meghalaya. This was my second time in the state within a year and it felt like meeting an old friend, familiar yet new in many ways. And now that my address reads Cherrapunjee, Meghalaya, I can tell you one thing with utmost certainty – I have found a friend for life.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotographed by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails#darbadarinnortheast #womenbackpacker#travel #indiashutterbugs #indiapictures#instagood #igr_india #northeastindia#india_clicks #lonelyplanetindia#7sistersindia #hippieinhills #desi_diaries#natgeotravel #indianBucketList#MyPixelDiary #bbctravel #cntgiveitashot#letsgowonder #wishiwasthere #waterfalls#northeast_india #roadlesstraveled#solotravel #hitchhiker #ChaloNortheast#WhereIsNortheast#mesmerisingmeghalaya"
}
}
]
},
"shortcode": "BsLcN8XAB4b",
"edge_media_to_comment": {
"count": 7
},
"comments_disabled": false,
"taken_at_timestamp": 1546532148,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/2ba0883c1ed0d7ea3191b21e2f67e648/5CDE45D8/t51.2885-15/e35/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 120
},
"edge_media_preview_like": {
"count": 120
},
"location": {
"id": "317740395",
"has_public_page": true,
"name": "Cherrapunji, India",
"slug": "cherrapunji-india"
},
"gating_info": null,
"media_preview": "ACoq6aisWPVXaTayjaGIJHscetJLqrLkqAdvrmpuh2NuiuaXWp26Ip/P/GpZdXmQAhUPryf8ad0FjoKK5ca9Kf4U/X/GtSK/d0VsD5gD37jNAjmpwRK3P8R/masxnz3CyEY55x/hjNJJZ3DSMRG3LHBx2yakNrcA5CNx7UiyHfJGxGQccZGcVWKn3574/wDr1YWznU52Oc/7NSCwlI5R8/SkwKJi7+tb1uv7pP8AdX+QrLewnAyEY+2Oa2IIZBGoKsCFHGPamiWblFFFUIKKKKACiiigD//Z",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/63c2ff4b6078050ee3136520d7ac7f2e/5CF8963D/t51.2885-15/sh0.08/e35/s640x640/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/e483c51026837fb6548c58f090be7763/5CF0769A/t51.2885-15/e35/s150x150/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/bae1c821b3482489b4b8d8098ba59acc/5CEC27D0/t51.2885-15/e35/s240x240/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/3b2e3807e153ed41cb65fdf24ebe94b2/5D00D36A/t51.2885-15/e35/s320x320/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/822663d19c9069526077414f6e8ee110/5CE3D930/t51.2885-15/e35/s480x480/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/63c2ff4b6078050ee3136520d7ac7f2e/5CF8963D/t51.2885-15/sh0.08/e35/s640x640/49906980_836848953313224_4872741082673340156_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: tree, bridge, outdoor, water and nature"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "1946582124182153111",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Wish you all a very happy new year!\n⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\nPhotograph by @trishnamohanty.\n⠀⠀⠀⠀⠀⠀⠀⠀⠀\n#darbadar #darbadartrails#darbadarinmaharashtra #womentraveler#travel #selfportrait #portraitphotography#traveller #photographer #portrait#SoFeTravel #pune #girlslovetravel #gltlove#punetraveler #therealme #outdoorportraits#travelbloggerportrait #travelblogger"
}
}
]
},
"shortcode": "BsDpiDmAKeX",
"edge_media_to_comment": {
"count": 6
},
"comments_disabled": false,
"taken_at_timestamp": 1546270693,
"dimensions": {
"height": 1080,
"width": 1080
},
"display_url": "https://instagram.famd5-1.fna.fbcdn.net/vp/a9979f6c9833d3c29d36d6198cabe3a8/5CE7A19C/t51.2885-15/e35/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"edge_liked_by": {
"count": 108
},
"edge_media_preview_like": {
"count": 108
},
"location": {
"id": "125788964841593",
"has_public_page": true,
"name": "Nongriat",
"slug": "nongriat"
},
"gating_info": null,
"media_preview": "ACoq6Peo7jj3o8xT3H5iuVu4g8rkMqtubhjjPJ/PPTHekitVTDdd2OQPunBzjHUe/r3qOYdjrN6juPzpciuTeSEcbS/zfezyG74PU578c1NNKpIxhZTwzDgEdOecZ7MCM5o5gsdLvX1H50vWuSmiMQLnjAzj1J4H09foMV01qcwofVF/kKIy5gOXuXUTPxzvbH5nmmSzYGQSWAAK+3XnB4GAO340l2o8+Rsjh2475B9P5VVkbdlh7/ke1AyZ5FbnPIOQAOM44/AdPxzSRE7Tu5LHp2yeT9D6etQI6lTnGRjA+nWmh9vuDzVNaA2WGfKlT9fxHTPsK7G0H7mP/cX/ANBFcT5nykY5OOf6fT+tdraf6iP/AHF/9BFJIRXk0m3kYuwOWJJ+Y9T1ofSLZ8ZU8DAwT0rSoqhGT/Ylr/dP/fR/xp39jW3of++jWpRQBlf2La/3T/30f8a0kQIoUdFAA/Cn0UAf/9k=",
"owner": {
"id": "2301755000",
"username": "darbadartrails"
},
"thumbnail_src": "https://instagram.famd5-1.fna.fbcdn.net/vp/e3c99787200b2060e789d474eb0ea57a/5CFCDB79/t51.2885-15/sh0.08/e35/s640x640/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"thumbnail_resources": [
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/29b223e8e3d1d92bd058f9c1c8e06782/5CF919DE/t51.2885-15/e35/s150x150/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/81fe661f082c62c702abf705063536cf/5CE70494/t51.2885-15/e35/s240x240/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/46130391fd47b32b9a63389a7abccdad/5CFDE32E/t51.2885-15/e35/s320x320/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/8c54fabbfe363c43da0632c5fb78214c/5CE75874/t51.2885-15/e35/s480x480/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.famd5-1.fna.fbcdn.net/vp/e3c99787200b2060e789d474eb0ea57a/5CFCDB79/t51.2885-15/sh0.08/e35/s640x640/47583386_223218171922409_8212917176627118892_n.jpg?_nc_ht=instagram.famd5-1.fna.fbcdn.net",
"config_width": 640,
"config_height": 640
}
],
"is_video": false,
"accessibility_caption": "Image may contain: 2 people, tree, plant, outdoor and nature"
}