Compare commits

..

2 commits

Author SHA1 Message Date
f8f8a38a00 Added instagram fixture 2026-03-15 15:38:03 -04:00
3302d84815 Glob simpler 2026-03-15 15:37:41 -04:00
49 changed files with 1384 additions and 5 deletions

14
test/fixtures/instagram-json-2026-03.md vendored Normal file
View file

@ -0,0 +1,14 @@
# instagram-json-2026-03
## Manual edits / notes
* `ads_information/ads_and_topics`
* Both `posts_viewer.json` and `videos_watcher.json` have this weird array list to get the information for a single entry. "label values" They all combine to basically make one entry
* The URL in the "dict"/owner it's tied to is the external URL of that profile (like to a link tree or external website, blank if none was set)
* they were 3 long so I had to manually add some info back because scrub only keeps 2...
* `personal_information/personal_information`
* Some of the values store key-type information. You'd have to re-enter all those because scrub removes them
* A lot of `timestamp: 0` which seem to indicate no timestamp, but scrub overwrite these to `timestamp: 1`
* `your_instagram_activity/messages`
* Have to prune all the folders per-user to get to one, also updating the images to do placeholders
* There's both a "photos" and a "videos"

View file

@ -0,0 +1,76 @@
[
{
"timestamp": 1709290000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxx",
"value": "url://somewhere",
"href": "url://somewhere"
},
{
"dict": [
{
"dict": [
{
"label": "URL",
"value": "url://somewhere"
},
{
"label": "Name",
"value": "xxx"
},
{
"label": "Username",
"value": "xxxx"
}
],
"title": ""
}
],
"title": "Owner"
}
],
"fbid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"timestamp": 1709290000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxx",
"value": "url://somewhere",
"href": "url://somewhere"
},
{
"dict": [
{
"dict": [
{
"label": "URL",
"value": "url://somewhere"
},
{
"label": "Name",
"value": "xxx"
},
{
"label": "Username",
"value": "xxxx"
}
],
"title": ""
}
],
"title": "Owner"
}
],
"fbid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]

View file

@ -0,0 +1,26 @@
{
"impressions_history_posts_not_interested": [
{
"string_list_data": [
{
"href": "url://somewhere",
"value": "xxxx"
},
{
"timestamp": 1707535000
}
]
},
{
"string_list_data": [
{
"href": "url://somewhere",
"value": "xxxx"
},
{
"timestamp": 1707150000
}
]
}
]
}

View file

@ -0,0 +1,76 @@
[
{
"timestamp": 1709415000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxx",
"value": "url://somewhere",
"href": "url://somewhere"
},
{
"dict": [
{
"dict": [
{
"label": "URL",
"value": "url://somewhere"
},
{
"label": "Name",
"value": "xxx"
},
{
"label": "Username",
"value": "xxxx"
}
],
"title": ""
}
],
"title": "Owner"
}
],
"fbid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"timestamp": 1709415000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxx",
"value": "url://somewhere",
"href": "url://somewhere"
},
{
"dict": [
{
"dict": [
{
"label": "URL",
"value": "url://somewhere"
},
{
"label": "Name",
"value": "xxx"
},
{
"label": "Username",
"value": "xxxx"
}
],
"title": ""
}
],
"title": "Owner"
}
],
"fbid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]

View file

@ -0,0 +1,49 @@
{
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxx",
"vec": []
},
{
"dict": [
{
"dict": [
{
"label": "xxxxx",
"value": "xxxxxxxxxx"
},
{
"label": "xxxxxxxx",
"value": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "Creation time",
"timestamp_value": 1709290000
}
],
"title": ""
},
{
"dict": [
{
"label": "Event",
"value": "Hide an Ad"
},
{
"label": "Ad title",
"value": "xxx"
},
{
"label": "Creation time",
"timestamp_value": 1709290000
}
],
"title": ""
}
],
"title": "xxxxxxxxxx"
}
],
"fbid": "11111111111111111"
}

View file

@ -0,0 +1,14 @@
{
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"value": "xxxxx"
},
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp_value": 1
}
],
"fbid": "1111111111111111"
}

View file

@ -0,0 +1,16 @@
{
"ig_custom_audiences_all_types": [
{
"advertiser_name": "xxxxxxxxxxxxxxxxx",
"has_data_file_custom_audience": false,
"has_remarketing_custom_audience": false,
"has_in_person_store_visit": false
},
{
"advertiser_name": "xxxxxxxxx",
"has_data_file_custom_audience": false,
"has_remarketing_custom_audience": false,
"has_in_person_store_visit": false
}
]
}

View file

@ -0,0 +1,17 @@
{
"media": [],
"label_values": [
{
"label": "xxxx",
"vec": [
{
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]
}
],
"fbid": "11111111111111111"
}

View file

@ -0,0 +1,24 @@
{
"apps_and_websites_off_meta_activity": [
{
"name": "xxxxxxxx",
"events": [
{
"id": 1111111111111111,
"type": "xxxxxxxxx",
"timestamp": 1716350000
}
]
},
{
"name": "xxxxxxxxxxxxxxxx",
"events": [
{
"id": 111111111111111,
"type": "xxxxxxxxxxxx",
"timestamp": 1705390000
}
]
}
]
}

View file

@ -0,0 +1,15 @@
{
"timestamp": 1720710000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp_value": 1
}
],
"fbid": "11111111111111111"
}

View file

@ -0,0 +1,22 @@
{
"relationships_blocked_users": [
{
"title": "xxxxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/_u/xxxxxxxxxxx",
"timestamp": 1706055000
}
]
},
{
"title": "xxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/_u/xxxxxxxxx",
"timestamp": 1731920000
}
]
}
]
}

View file

@ -0,0 +1,24 @@
[
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxxxxxxxxxxx",
"timestamp": 1726180000
}
]
},
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxx",
"timestamp": 1715235000
}
]
}
]

View file

@ -0,0 +1,22 @@
{
"relationships_following": [
{
"title": "xxxxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"timestamp": 1709895000
}
]
},
{
"title": "xxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"timestamp": 1709360000
}
]
}
]
}

View file

@ -0,0 +1,26 @@
{
"relationships_follow_requests_sent": [
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxxxxx",
"timestamp": 1706355000
}
]
},
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxxx",
"timestamp": 1735340000
}
]
}
]
}

View file

@ -0,0 +1,15 @@
{
"relationships_unfollowed_users": [
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxx",
"timestamp": 1707535000
}
]
}
]
}

View file

@ -0,0 +1,26 @@
{
"relationships_dismissed_suggested_users": [
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxxxxxx",
"timestamp": 1716255000
}
]
},
{
"title": "",
"media_list_data": [],
"string_list_data": [
{
"href": "https://www.instagram.com/xxx",
"value": "xxxxxxxxxxxxxxxx",
"timestamp": 1716255000
}
]
}
]
}

View file

@ -0,0 +1,14 @@
{
"timestamp": 1734985000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxxxxxxxxxxxxxxxx",
"timestamp_value": 1733805000
}
],
"fbid": "111111111111111"
}

View file

@ -0,0 +1,36 @@
{
"devices_devices": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Last Login": {
"href": "",
"value": "",
"timestamp": 1731745000
},
"User Agent": {
"href": "",
"value": "some/path",
"timestamp": 1
}
}
},
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Last Login": {
"href": "",
"value": "",
"timestamp": 1722175000
},
"User Agent": {
"href": "",
"value": "some/path",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,15 @@
{
"inferred_data_primary_location": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"City Name": {
"href": "",
"value": "xxxxxxxxxxxxxx",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,20 @@
{
"profile_friend_map": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Incoming requests": {
"href": "",
"value": "",
"timestamp": 1
},
"Outgoing requests": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,50 @@
{
"profile_account_insights": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Contact Syncing": {
"href": "",
"value": "xxxxx",
"timestamp": 1
},
"First Country Code": {
"href": "",
"value": "xx",
"timestamp": 1
},
"Has Shared Live Video": {
"href": "",
"value": "xxxxx",
"timestamp": 1
},
"Last Login": {
"href": "",
"value": "",
"timestamp": 1731745000
},
"Last Logout": {
"href": "",
"value": "",
"timestamp": 1723505000
},
"First Story Time": {
"href": "",
"value": "",
"timestamp": 1
},
"Last Story Time": {
"href": "",
"value": "",
"timestamp": 1
},
"First Close Friends Story Time": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,15 @@
{
"profile_note_interactions": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Last Notes Seen Time": {
"href": "",
"value": "",
"timestamp": 1733380000
}
}
}
]
}

View file

@ -0,0 +1,45 @@
{
"profile_user": [
{
"title": "xxxxxxxxxxxxxxxx",
"media_map_data": {},
"string_map_data": {
"Email": {
"href": "",
"value": "not_a_real_email@example.com",
"timestamp": 1
},
"Phone Confirmed": {
"href": "",
"value": "xxxxx",
"timestamp": 1
},
"Username": {
"href": "",
"value": "xxx",
"timestamp": 1
},
"Name": {
"href": "",
"value": "xxx",
"timestamp": 1
},
"Gender": {
"href": "",
"value": "xxx",
"timestamp": 1
},
"Date of birth": {
"href": "",
"value": "2020-04-13",
"timestamp": 1
},
"Private Account": {
"href": "",
"value": "xxxxx",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,9 @@
{
"profile_business": [
{
"title": "Business Information",
"media_map_data": {},
"string_map_data": {}
}
]
}

View file

@ -0,0 +1,30 @@
{
"profile_profile_change": [
{
"title": "Profile Change",
"media_map_data": {},
"string_map_data": {
"Changed": {
"href": "",
"value": "Email",
"timestamp": 0
},
"Previous Value": {
"href": "",
"value": "",
"timestamp": 0
},
"New Value": {
"href": "",
"value": "not_a_real_email@example.com",
"timestamp": 0
},
"Change Date": {
"href": "",
"value": "",
"timestamp": 1716255000
}
}
}
]
}

View file

@ -0,0 +1,15 @@
{
"settings_allow_comments_from": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Comments Allowed From": {
"href": "",
"value": "xxxxxxxx",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,14 @@
{
"timestamp": 1716255000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"label": "xxxxxxxxxxx",
"timestamp_value": 1716255000
}
],
"fbid": "11111111111111111"
}

View file

@ -0,0 +1,30 @@
{
"settings_notification_preferences": [
{
"string_map_data": {
"Channel": {
"value": "xxxxx"
},
"Type": {
"value": "xxxxxxxxxxxx"
},
"Value": {
"value": "xxx"
}
}
},
{
"string_map_data": {
"Channel": {
"value": "xxxxx"
},
"Type": {
"value": "xxxxxxxxxxxxx"
},
"Value": {
"value": "xxx"
}
}
}
]
}

View file

@ -0,0 +1,20 @@
{
"settings_upgraded_to_cross_app_messaging": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Upgraded To Cross-App Messaging": {
"href": "",
"value": "xxxxx",
"timestamp": 1
},
"Time Upgraded": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,26 @@
{
"topics_your_topics": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Name": {
"href": "",
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp": 1
}
}
},
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Name": {
"href": "",
"value": "xxxxxxxxxx",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,35 @@
{
"account_history_imprecise_last_known_location": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Imprecise Latitude": {
"href": "",
"value": "1",
"timestamp": 1
},
"Imprecise Longitude": {
"href": "",
"value": "1",
"timestamp": 1
},
"Precise Latitude": {
"href": "",
"value": "1",
"timestamp": 1
},
"Precise Longitude": {
"href": "",
"value": "1",
"timestamp": 1
},
"GPS Time Uploaded": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,76 @@
{
"account_history_login_history": [
{
"title": "2020-04-13T10:09:08+00:00",
"media_map_data": {},
"string_map_data": {
"Cookie Name": {
"href": "",
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp": 1
},
"IP Address": {
"href": "",
"value": "1.1.1.1",
"timestamp": 1
},
"Port": {
"href": "",
"value": "11111",
"timestamp": 1
},
"Language Code": {
"href": "",
"value": "xx",
"timestamp": 1
},
"Time": {
"href": "",
"value": "",
"timestamp": 1731745000
},
"User Agent": {
"href": "",
"value": "some/path",
"timestamp": 1
}
}
},
{
"title": "2020-04-13T10:09:08+00:00",
"media_map_data": {},
"string_map_data": {
"Cookie Name": {
"href": "",
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp": 1
},
"IP Address": {
"href": "",
"value": "1.1.1.1",
"timestamp": 1
},
"Port": {
"href": "",
"value": "11111",
"timestamp": 1
},
"Language Code": {
"href": "",
"value": "xx",
"timestamp": 1
},
"Time": {
"href": "",
"value": "",
"timestamp": 1722175000
},
"User Agent": {
"href": "",
"value": "some/path",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,40 @@
{
"account_history_logout_history": [
{
"title": "2020-04-13T10:09:08+00:00",
"media_map_data": {},
"string_map_data": {
"Cookie Name": {
"href": "",
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"timestamp": 1
},
"IP Address": {
"href": "",
"value": "1.1.1.1",
"timestamp": 1
},
"Port": {
"href": "",
"value": "11111",
"timestamp": 1
},
"Language Code": {
"href": "",
"value": "xx",
"timestamp": 1
},
"Time": {
"href": "",
"value": "",
"timestamp": 1723505000
},
"User Agent": {
"href": "",
"value": "some/path",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,40 @@
{
"account_history_registration_info": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Username": {
"href": "",
"value": "xxxxxxxxxxxx",
"timestamp": 1
},
"IP Address": {
"href": "",
"value": "1.1.1.1",
"timestamp": 1
},
"Time": {
"href": "",
"value": "",
"timestamp": 1716255000
},
"Email": {
"href": "",
"value": "not_a_real_email@example.com",
"timestamp": 1
},
"Phone Number": {
"href": "",
"value": "",
"timestamp": 1
},
"Device": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,38 @@
[
{
"media_list_data": [
{
"uri": ""
}
],
"string_map_data": {
"Comment": {
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
"Media Owner": {
"value": "xxxxxxxxx"
},
"Time": {
"timestamp": 1708465000
}
}
},
{
"media_list_data": [
{
"uri": ""
}
],
"string_map_data": {
"Comment": {
"value": "xxxxxxxxxxxxxxxxxxxxxxxxxx"
},
"Media Owner": {
"value": "xxxxxxxxx"
},
"Time": {
"timestamp": 1727790000
}
}
}
]

View file

@ -0,0 +1,24 @@
{
"likes_comment_likes": [
{
"title": "xxxxxxxxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/reel/xxx/",
"value": "xxxx",
"timestamp": 1728395000
}
]
},
{
"title": "xxxxxxxxxxx",
"string_list_data": [
{
"href": "https://www.instagram.com/reel/xxx/",
"value": "xxxx",
"timestamp": 1717495000
}
]
}
]
}

View file

@ -0,0 +1,62 @@
[
{
"timestamp": 1710230000,
"media": [],
"label_values": [
{
"label": "xxx",
"value": "https://www.instagram.com/reel/xxx/",
"href": "https://www.instagram.com/reel/xxx/"
},
{
"dict": [
{
"dict": [
{
"label": "xxx",
"value": "https://www.example.com"
},
{
"label": "xxxx",
"value": "xxxxxxxx"
}
],
"title": ""
}
],
"title": "xxxxx"
}
],
"fbid": "11111111111111111"
},
{
"timestamp": 1710230000,
"media": [],
"label_values": [
{
"label": "xxx",
"value": "url://somewhere",
"href": "url://somewhere"
},
{
"dict": [
{
"dict": [
{
"label": "xxx",
"value": "url://somewhere"
},
{
"label": "xxxx",
"value": "xxxxxxxxx"
}
],
"title": ""
}
],
"title": "xxxxx"
}
],
"fbid": "11111111111111111"
}
]

View file

@ -0,0 +1,59 @@
{
"participants": [
{
"name": "xxxxx"
},
{
"name": "xxxxxxxxxxxx"
}
],
"messages": [
{
"sender_name": "xxxxx",
"timestamp_ms": 1700000000000,
"content": "xxxxxxxxxxxxxxxxxxxxxxxxx",
"share": {
"link": "url://somewhere",
"share_text": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"original_content_owner": "xxxxxxxxxxxxxxxxx"
},
"is_geoblocked_for_viewer": false,
"is_unsent_image_by_messenger_kid_parent": false
},
{
"sender_name": "xxxxx",
"timestamp_ms": 1700000000000,
"content": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"is_geoblocked_for_viewer": false,
"is_unsent_image_by_messenger_kid_parent": false
},
{
"sender_name": "xxx",
"timestamp_ms": 1700000000000,
"photos": [
{
"uri": "your_instagram_activity/messages/inbox/username_111111111/photos/xxx.png",
"creation_timestamp": 1700000000
},
{
"uri": "your_instagram_activity/messages/inbox/username_111111111/photos/xxx.png",
"creation_timestamp": 1700000000
},
{
"uri": "your_instagram_activity/messages/inbox/username_111111111/photos/xxx.png",
"creation_timestamp": 1700000000
},
{
"uri": "your_instagram_activity/messages/inbox/username_111111111/photos/xxx.png",
"creation_timestamp": 1700000000
}
],
"is_geoblocked_for_viewer": false,
"is_unsent_image_by_messenger_kid_parent": false
}
],
"title": "xxxxx",
"is_still_participant": false,
"thread_path": "some/path",
"magic_words": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,25 @@
{
"monetization_eligibility": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Product Name": {
"href": "",
"value": "xxxxxxxxxxxxxxx",
"timestamp": 1
},
"Decision": {
"href": "",
"value": "xxxxxxxxxxxx",
"timestamp": 1
},
"Reason": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,32 @@
[
{
"timestamp": 1710420000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxx",
"timestamp_value": 1
},
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"value": "1"
}
],
"fbid": "111111111111111"
},
{
"timestamp": 1717720000,
"media": [],
"label_values": [
{
"label": "xxxxxxxxxxxxxxxxxxxxxxx",
"timestamp_value": 1717720000
},
{
"label": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"value": "1"
}
],
"fbid": "1111111111111111"
}
]

View file

@ -0,0 +1,22 @@
{
"saved_saved_media": [
{
"title": "xxxxxxxxxxxxxxxxxxxx",
"string_map_data": {
"Saved on": {
"href": "https://www.instagram.com/reel/xxx/",
"timestamp": 1706285000
}
}
},
{
"title": "xxxxxxxxxxxxxxxxxxxxxxxxxxx",
"string_map_data": {
"Saved on": {
"href": "https://www.instagram.com/reel/xxx/",
"timestamp": 1728990000
}
}
}
]
}

View file

@ -0,0 +1,24 @@
{
"checkout_saved_recently_viewed_products": [
{
"string_map_data": {
"Product Name": {
"value": "xxxxxxxxxxxxxxxxx"
},
"Merchant Name": {
"value": "xxxxxxxx"
}
}
},
{
"string_map_data": {
"Product Name": {
"value": "xxxxxxxxxxxxx"
},
"Merchant Name": {
"value": "xxxxxxxx"
}
}
}
]
}

View file

@ -0,0 +1,22 @@
{
"story_activities_emoji_sliders": [
{
"title": "xxxxxxxxxxxxxxxxxxxxxxxx",
"string_list_data": [
{
"value": "11.111111",
"timestamp": 1725205000
}
]
},
{
"title": "xxxxxxxxxxxxx",
"string_list_data": [
{
"value": "11.111111",
"timestamp": 1722800000
}
]
}
]
}

View file

@ -0,0 +1,22 @@
{
"story_activities_polls": [
{
"title": "xxxxxxxxxx",
"string_list_data": [
{
"value": "xxx",
"timestamp": 1717115000
}
]
},
{
"title": "xxxxxxxxxxxxxx",
"string_list_data": [
{
"value": "xxxxxxxxxxxxx",
"timestamp": 1706355000
}
]
}
]
}

View file

@ -0,0 +1,15 @@
{
"subscriptions_show_story_teaser_setting": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Exclusive Story Promo Setting": {
"href": "",
"value": "xxxxx",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,15 @@
{
"subscriptions_muted_story_teaser_creators": [
{
"title": "",
"media_map_data": {},
"string_map_data": {
"Muted Creators": {
"href": "",
"value": "",
"timestamp": 1
}
}
}
]
}

View file

@ -0,0 +1,30 @@
{
"text_post_app_text_post_app_posts_seen": [
{
"string_map_data": {
"Author": {
"value": "xxxxxxxxxxxxxxx"
},
"Time": {
"timestamp": 1709290000
},
"URL": {
"href": "https://www.instagram.com/p/xxx/"
}
}
},
{
"string_map_data": {
"Author": {
"value": "xxxxxxxx"
},
"Time": {
"timestamp": 1709290000
},
"URL": {
"href": "https://www.instagram.com/p/xxx/"
}
}
}
]
}

View file

@ -76,11 +76,8 @@ assert(overrideType === undefined || overrideType === "" || overrideType === "cs
console.log(`Matching files against passed file_or_glob: '${fileOrGlob}'`);
const filePaths: string[] = [];
for await (const file of fs.glob(fileOrGlob)) {
const resolved = path.resolve(file);
filePaths.push(resolved);
}
const filePaths = (await Array.fromAsync(fs.glob(fileOrGlob)))
.map(p => path.resolve(p));
console.log("filePaths", filePaths);
assert(filePaths.length > 0, `No files found matching: ${fileOrGlob}`);