Obtaining and formatting JSON code

Some webpages contain a huge amount of JSON code which is not easily readable, when provided as a single line. This usually is the case when the bare webpage sourcecode is downloaded.

A very powerful tool, which is able to re-arrange the JSON code in a more convenient tree structure is jq. It is defined as a «lightweight and flexible command-line JSON processor», being also able to perform many other operations with the original code, as shown here. In some OSs, it generates a colored output, to better highlight and differentiate the items.

The entire webpage HTML code can not be used as it is: in order to be correctly processed by jq, only the relevant JSON block must be considered.

The sourcecode of this Instagram post, for example, includes JSON. Being Instagram continuously updated, this code may vary: a copy of its current version is available here. The following steps are based on this version.

One of the easiest ways to obtain the sourcecode of an HTML page is:

user@jclient:~$ curl https://www.instagram.com/p/BpDGK9nnY_Z/ 2>/dev/null

/dev/null avoids that the output page code is merged with the progress bar, also printed by curl in stderr (which is file descriptor 2, which is redirected to /dev/null). As an alternative (but it may not work on some curl versions), use option -s.

Note that no output is provided if the (appartently equivalent) address https://instagram.com/p/BpDGK9nnY_Z/ is used.

All the code will be suddenly printed on stdout and only the last lines will be readable. To avoid this, curl output can be processed by a pager like less, or it can be stored in a file (as done for the local copy):

user@jclient:~$ curl https://www.instagram.com/p/BpDGK9nnY_Z/ 2>/dev/null | less
user@jclient:~$ curl -o example.html https://www.instagram.com/p/BpDGK9nnY_Z/ 2>/dev/null

Either way, the page is now available for inspection, to locate the position of its relevant part:

                         <script type="text/javascript">window._sharedData = {"config":{"csrf_token":"X1HS1aQeZ3HhMx9imiYmixLwOxATfl1I","viewer":null,"viewerId":null},"country_code":"IT","language_code":"en","locale":"en_US","entry_data":{"PostPage":[{"graphql":{"shortcode_media":{"__typename":"GraphImage","id":"1892383410062462937","shortcode":"BpDGK9nnY_Z","dimensions":{"height":1123,"width":1080},"gating_info":null,"media_preview":"ACkq59RmrCL6VGgq2i+lMQqL61Z8sEdKaENOB7GlcdjPlj2mq+KuS81WpiHoKuxiqsVW1GKTGjWjiQpnvWbMMGnCUgYqu7ZqUUyvKar1JIahzVkE8LbTWmrBl96xl61aQ8UAWHbFVnenGq70hjGbNR0tFMD/2Q==","display_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a45f26e3f353054abd1b5327ef3e0e40/5D0C5567/t51.2885-15/fr/e15/p1080x1080/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","display_resources":[{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/2d63156ec7f76874812d3ccbab763303/5D23478F/t51.2885-15/sh0.08/e35/p640x640/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":640,"config_height":665},{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/c89f49eac819cc9d0eced4a4764a4a37/5D20ED8F/t51.2885-15/sh0.08/e35/p750x750/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":750,"config_height":779},{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/a45f26e3f353054abd1b5327ef3e0e40/5D0C5567/t51.2885-15/fr/e15/p1080x1080/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":1080,"config_height":1123}],"accessibility_caption":"No photo description available.","is_video":false,"should_log_client_event":false,"tracking_token":"eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiOTE1M2FhMmVmZjEyNDFmOTgzYWU4ZDg0ODg1MzczMDIxODkyMzgzNDEwMDYyNDYyOTM3In0sInNpZ25hdHVyZSI6IiJ9","edge_media_to_tagged_user":{"edges":[]},"edge_media_to_caption":{"edges":[{"node":{"text":"This spiral galaxy has a bright, active core, powered by a supermassive black hole. But how do we learn more about the voraciously feeding black hole at its center - and how it affects other galaxies? Our forthcoming James Webb Space Telescope's sharp vision will be able to see into the swirling material inside the galaxy and measure the motions of stars - one way to confirm the black hole's mass. \nCredits: NASA, ESA, and J. DePasquale (STScI)\n#nasa #solarsystem #science #cosmos #blackholes #galaxy #stars #beautiful #pictureoftheday #universe #astronomy"}}]},"caption_is_edited":true,"has_ranked_comments":false,"edge_media_to_comment":{"count":2530,"page_info":{"has_next_page":true,"end_cursor":"QVFBOXJJZlV3TnB2RzdtVUpTcGJqdXhkTmFaSGpRZDdfbW4zMjB4ckF1Q3R4UGpXa1ZOVGFjQTFNeV9ZWUNiWFpZUU5wLUZyLUwyMGtKelJ2OTFmTWRESg=="},"edges":[{"node":{"id":"18024164737022170","text":"@missbliss46 wtf this is copyright sis, NASA is just a bald man living in his mums basement","created_at":1547807150,"did_report_as_spam":false,"owner":{"id":"1782179886","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/1676425ea6335647dd3d50bbc71c8630/5D168181/t51.2885-19/s150x150/50003743_319204828718699_1789569751047995392_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"unexplainablepatric"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18022896985055751","text":"@unexplainablepatric honestly NASA can\u2019t trick us anymore now what we know the truth. Like the \u201cmoon landing\u201d FAKE \u201ccircle earth\u201d FAKE. The earth is flat \ud83d\ude31","created_at":1547807209,"did_report_as_spam":false,"owner":{"id":"6027663131","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/877a0a4bfc243ec7c65433fdadd3cc78/5D1CF76E/t51.2885-19/s150x150/47582101_218752055695458_4520459555850682368_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"stephanieku_o"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18004919218123857","text":"@stephaniek2003 flat earth community unite","created_at":1547807251,"did_report_as_spam":false,"owner":{"id":"6027663131","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/877a0a4bfc243ec7c65433fdadd3cc78/5D1CF76E/t51.2885-19/s150x150/47582101_218752055695458_4520459555850682368_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"stephanieku_o"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17999749702081281","text":"@unexplainablepatric there was a typo \"snapchat\"","created_at":1547807290,"did_report_as_spam":false,"owner":{"id":"1782179886","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/1676425ea6335647dd3d50bbc71c8630/5D168181/t51.2885-19/s150x150/50003743_319204828718699_1789569751047995392_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"unexplainablepatric"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17843311564351687","text":"\u0628\u0647 \u067e\u06cc\u062c \u0645\u0646 \u0647\u0645 \u0633\u0631 \u0628\u0632\u0646\u06cc\u062f","created_at":1548026298,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17996072890176723","text":"\"voc\u00eas est\u00e3o todos errados, tudo isso \u00e9 um monte de tartaruga uma em cima da outra\"","created_at":1548178733,"did_report_as_spam":false,"owner":{"id":"8538924367","is_verified":false,"profile_pic_url":"https://instagram.ficn1-1.fna.fbcdn.net/vp/ec397c980dd9ea03b36724e86d6e49a2/5D2CF3F1/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ht=instagram.ficn1-1.fna.fbcdn.net","username":"danielbar.ros"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18006011653123953","text":"Milky way","created_at":1548181322,"did_report_as_spam":false,"owner":{"id":"10123715986","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/2b5570066a69f05536734b57b9545f6a/5D2C7657/t51.2885-19/s150x150/49858585_533407277170930_1296288084177977344_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dead_shadow2167"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17950144549237174","text":"\u0644\u0627\u06cc\u06a9","created_at":1548211885,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18026052556009892","text":"\u0644\u0627\u06cc\u06a9","created_at":1548279255,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17926903819264153","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the white snow that looks at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Mention it. [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548545531,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18026203102019480","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the white snow that looks at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Mention it. [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548545554,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17927019826264514","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the snow from the white snow that stares at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Says [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548550111,"did_report_as_spam":false,"owner":{"id":"7596209711","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/83a47b04de4b8164146f4fa76109ad4f/5D095BC5/t51.2885-19/s150x150/50940489_629853697445686_4490521447659208704_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme.ir"},"viewer_has_liked":false,"edge_liked_by":{"count":2}}},{"node":{"id":"18003217156081075","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the snow from the white snow that stares at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Says [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548550114,"did_report_as_spam":false,"owner":{"id":"7596209711","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/83a47b04de4b8164146f4fa76109ad4f/5D095BC5/t51.2885-19/s150x150/50940489_629853697445686_4490521447659208704_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme.ir"},"viewer_has_liked":false,"edge_liked_by":{"count":2}}},{"node":{"id":"18010774216117895","text":"\u0628\u0627 \u0639\u0631\u0636 \u0645\u0639\u0630\u0631\u062a \u0645\u0646 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc \u062f\u0627\u0631\u0645 \u0648 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u062a\u0648\u0633\u0637 \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0631\u062c\u0645\u0647 \u06af\u0631 \u06af\u0648\u06af\u0644 \u062a\u0631\u062c\u0645\u0647 \u0645\u06cc \u06a9\u0646\u0645 \u0648 \u0633\u062e\u0646\u0627\u0646 \u062f\u0631\u0628\u0627\u0631\u0647 \u06a9\u0647\u06a9\u0634\u0627\u0646 \u0647\u0627 \u062f\u0686\u0627\u0631 \u0627\u062e\u062a\u0644\u0627\u0644 \u0645\u06cc \u0634\u0648\u0646\u062f \u0648 \u062f\u0631\u0633\u062a \u0627\u0646\u0686\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u0645 \u062a\u0631\u062c\u0645\u0647 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0646\u0638\u0648\u0631\u0645 \u0631\u0627 \u0627\u0634\u062a\u0628\u0627\u0647 \u06af\u06cc\u0631\u062f \u062e\u0648\u062f\u062a\u0627 \u0633\u0639\u06cc \u062f\u0642\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0627\u0646\u0686\u0647 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0639\u0642\u0644 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f","created_at":1548550976,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17918937475272250","text":"Sorry, I have these words in Farsi and translate these words into English by the Google Translator program, and the words about the galaxies are interrupted, and I just do not translate what I want and may make me wrong. Carefully take care of your words and make them read in accordance with the wisdom\u0628\u0627 \u0639\u0631\u0636 \u0645\u0639\u0630\u0631\u062a \u0645\u0646 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc \u062f\u0627\u0631\u0645 \u0648 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u062a\u0648\u0633\u0637 \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0631\u062c\u0645\u0647 \u06af\u0631 \u06af\u0648\u06af\u0644 \u062a\u0631\u062c\u0645\u0647 \u0645\u06cc \u06a9\u0646\u0645 \u0648 \u0633\u062e\u0646\u0627\u0646 \u062f\u0631\u0628\u0627\u0631\u0647 \u06a9\u0647\u06a9\u0634\u0627\u0646 \u0647\u0627 \u062f\u0686\u0627\u0631 \u0627\u062e\u062a\u0644\u0627\u0644 \u0645\u06cc \u0634\u0648\u0646\u062f \u0648 \u062f\u0631\u0633\u062a \u0627\u0646\u0686\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u0645 \u062a\u0631\u062c\u0645\u0647 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0646\u0638\u0648\u0631\u0645 \u0631\u0627 \u0627\u0634\u062a\u0628\u0627\u0647 \u06af\u06cc\u0631\u062f \u062e\u0648\u062f\u062a\u0627 \u0633\u0639\u06cc \u062f\u0642\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0627\u0646\u0686\u0647 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0639\u0642\u0644 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f","created_at":1548556545,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18011935726104687","text":"\u0646\u0638\u0631\u062a\u0648\u0646 \u0631\u0627\u062c\u0628 \u0646\u06cc\u0648\u06cc\u0648\u0631\u0633\u06cc\u062a\u06cc \u06cc\u0627 \u062f\u0628\u06cc \u06cc\u0627 \u062a\u0631\u06a9\u06cc\u0647 \u0686\u06cc\u0647 \u061f \u0627\u06af\u0631 \u0627\u0632 \u062f\u06cc\u062f\u0646 \u0645\u0646\u0627\u0637\u0642 \u0632\u06cc\u0628\u0627\u06cc \u062f\u0646\u06cc\u0627 \u0644\u0630\u062a \u0645\u06cc\u0628\u0631\u06cc\u062f \u0628\u0647 \u067e\u06cc\u062c \u0645\u0646 \u0633\u0631 \u0628\u0632\u0646\u06cc\u062f \ud83c\udf39\u0627\u0631\u0627\u062f\u062a \u0645\u0646\u062f \u0634\u0645\u0627 \u0632\u0627\u0631\u0627","created_at":1548659519,"did_report_as_spam":false,"owner":{"id":"6005250754","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/99286dcb6bd777e450f8087b9287d615/5D1EB2EB/t51.2885-19/s150x150/37947998_245067519661138_2530257743374188544_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"world_travel_pixs"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17848562290344673","text":"this is lie the earth is FLAT","created_at":1548897412,"did_report_as_spam":false,"owner":{"id":"7512733049","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/09629cdce060b018b3e2ab826420902d/5D0F8F29/t51.2885-19/s150x150/53527579_566321777209298_1216816298550362112_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"french_frier_potatoegurl"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18014478829097932","text":"@wcf  \u062d\u062a\u0649 \u0647\u0646\u0627 \u0645\u0648\u062c\u0648\u062f \u0645\u0648 \u0644\u0630\u064a \u0627\u0644\u062f\u0631\u062c\u0647 \u0627\u0644\u0644\u0647 \u064a\u0633\u0639\u062f\u0643","created_at":1549236711,"did_report_as_spam":false,"owner":{"id":"8318092561","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/fd63e50d7ec78275c04cdc9b93599ebc/5D206391/t51.2885-19/s150x150/53014752_1445979258876551_2137795172442832896_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"iiiwrm5"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17857800586332611","text":"\u062f\u0631 \u0635\u0648\u0631\u062a \u062a\u0645\u0627\u06cc\u0644 \u0627\u0632 \u067e\u06cc\u062c \u0645\u0627 \u062f\u06cc\u062f\u0646 \u06a9\u0646\u06cc\u062f","created_at":1549634828,"did_report_as_spam":false,"owner":{"id":"4980252070","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/88b9bb6fa81e73af20b8c3cc17f11af7/5D2059FC/t51.2885-19/s150x150/52390071_274786403441011_4900632378512244736_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"icg.official"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17869356754311618","text":"@jonny_haf","created_at":1549974125,"did_report_as_spam":false,"owner":{"id":"2529885483","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/36fe4358f7290b762fff7aaa69a3776e/5D09E22B/t51.2885-19/s150x150/53713938_1397250380417495_2301047411939737600_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"bon_gooooooooooo"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17972175700203523","text":"@bon_gooooooooooo \u03c0\u03b1\u03b9\u03b4\u03b9\u03ac \u03c4\u03c9\u03bd \u03ac\u03c3\u03c4\u03c1\u03c9\u03bd","created_at":1549974419,"did_report_as_spam":false,"owner":{"id":"2912519516","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/5d332371a948f9f503796b7852fe96fd/5D2413F2/t51.2885-19/s150x150/54196531_549081798945124_2795460759742578688_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"jonny_haf"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18003386365179059","text":"@jonny_haf \u2604\u2b50\ud83d\ude80","created_at":1549974641,"did_report_as_spam":false,"owner":{"id":"2529885483","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/36fe4358f7290b762fff7aaa69a3776e/5D09E22B/t51.2885-19/s150x150/53713938_1397250380417495_2301047411939737600_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"bon_gooooooooooo"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18004739263146199","text":"Kara delikkk\ud83d\ude02","created_at":1550609841,"did_report_as_spam":false,"owner":{"id":"7893041518","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/e8a37ed2d48e8a1775a40e630e6a3fb0/5D1BE8CA/t51.2885-19/s150x150/53337076_1507031446098417_2189515095606820864_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"onur.yesilyurt.526"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17970164434221392","text":"@jamescameronofficial https://youtu.be/UeTmE71uEaw","created_at":1550629931,"did_report_as_spam":false,"owner":{"id":"11123427702","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/68bf7a267b130c502fadc034ea027edf/5D076EFC/t51.2885-19/s150x150/52736717_2192647434384791_1829697080738709504_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"sunflowerturkana_omar"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18028836286074611","text":"And","created_at":1550800663,"did_report_as_spam":false,"owner":{"id":"4558927495","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/69e570ba852403558d7e66b46b4ecdcc/5D12141C/t51.2885-19/s150x150/51522788_374616936451661_93202585619529728_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"jerughmyugh_psa"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18017586325123643","text":"This is awesome :)","created_at":1550979555,"did_report_as_spam":false,"owner":{"id":"8555163477","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/fbc13b0957e882ffbda08f860d532906/5D0E8007/t51.2885-19/s150x150/47691538_1283884925103193_5278527171994845184_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"1cod_god"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18015504772081842","text":"Looks a little like our Galaxy","created_at":1551603218,"did_report_as_spam":false,"owner":{"id":"2054347438","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a71be0ea9abc7e790be429c6c6c87a58/5D4DB192/t51.2885-19/11311048_1615949078678181_738607336_a.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dadofnature"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17973887617217285","text":"Mote of dust suspended in the Sunbeam","created_at":1551603246,"did_report_as_spam":false,"owner":{"id":"2054347438","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a71be0ea9abc7e790be429c6c6c87a58/5D4DB192/t51.2885-19/11311048_1615949078678181_738607336_a.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dadofnature"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18041192623055013","text":"Breathtaking one","created_at":1551619931,"did_report_as_spam":false,"owner":{"id":"10859557916","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a24b63c62d98c635cc1d5c66b4033aea/5D1BD5A0/t51.2885-19/s150x150/51674689_2027147827354587_4589424288104185856_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"husky.lover_ig"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}}]},"comments_disabled":false,"taken_at_timestamp":1539809703,"edge_media_preview_like":{"count":647931,"edges":[]},"edge_media_to_sponsor_user":{"edges":[]},"location":null,"viewer_has_liked":false,"viewer_has_saved":false,"viewer_has_saved_to_collection":false,"viewer_in_photo_of_you":false,"viewer_can_reshare":true,"owner":{"id":"528817151","is_verified":true,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/4b1cd7b7ecb68da725eb38013d083253/5D2385ED/t51.2885-19/s150x150/29090066_159271188110124_1152068159029641216_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"nasa","blocked_by_viewer":false,"followed_by_viewer":false,"full_name":"NASA","has_blocked_viewer":false,"is_private":false,"is_unpublished":false,"requested_by_viewer":false},"is_ad":false,"edge_web_media_to_related_media":{"edges":[]}}}}]},"hostname":"www.instagram.com","deployment_stage":"c2","platform":"web","rhx_gis":"e4ed1832b5207cf66c17545d3efac165","nonce":"Xirj2axVlLYebs86R7VxjA==","mid_pct":26.52036,"zero_data":{},"cache_schema_version":2,"server_checks":{},"knobs":{"acct:ntb":0,"cb":0,"captcha":0,"fr":0},"to_cache":{"gatekeepers":{"cb":true,"sw":true,"seo":true,"seoht":true,"phone_qp":true,"nt":true,"rp":true,"3":false,"4":false},"qe":{"sdc":{"g":"","p":{}},"iab":{"g":"","p":{}},"app_upsell":{"g":"test_iglite","p":{"has_iglite_link":"true","has_iglite_new_content":"false"}},"igl_app_upsell":{"g":"","p":{}},"profile_header_name":{"g":"","p":{}},"bc3l":{"g":"","p":{}},"direct_conversation_reporting":{"g":"","p":{}},"frx_reporting":{"g":"","p":{}},"general_reporting":{"g":"","p":{}},"reporting":{"g":"","p":{}},"acc_recovery_link":{"g":"","p":{}},"notif":{"g":"","p":{}},"mobile_stories_doodling":{"g":"","p":{}},"show_copy_link":{"g":"","p":{}},"p_edit":{"g":"","p":{}},"404_as_react":{"g":"","p":{}},"acc_recovery":{"g":"","p":{}},"bundle":{"g":"","p":{}},"collections":{"g":"","p":{}},"dir":{"g":"","p":{}},"comment_ta":{"g":"","p":{}},"su":{"g":"","p":{}},"ebd_ul":{"g":"","p":{}},"ebdsim_li":{"g":"","p":{}},"ebdsim_lo":{"g":"","p":{}},"empty_feed":{"g":"","p":{}},"appsell":{"g":"","p":{}},"heart_tab":{"g":"","p":{}},"follow_button":{"g":"","p":{}},"log_cont":{"g":"control_intent_m","p":{"has_contextual_m":"false"}},"msisdn":{"g":"","p":{}},"onetaplogin":{"g":"default_opt_out","p":{"default_value":"false","during_reg":"true","storage_version":"one_tap_storage_version"}},"onetap":{"g":"","p":{}},"profile_tabs":{"g":"","p":{}},"multireg_iter":{"g":"test_back_removed_11_30","p":{"has_back_removed":"true"}},"reg_vp":{"g":"control_group_1","p":{"hide_value_prop":"false"}},"report_media":{"g":"","p":{}},"report_profile":{"g":"","p":{}},"su_universe":{"g":"","p":{}},"stale":{"g":"","p":{}},"tp_pblshr":{"g":"","p":{}},"video":{"g":"","p":{}},"felix":{"g":"","p":{}},"felix_clear_fb_cookie":{"g":"","p":{}},"felix_creation_duration_limits":{"g":"","p":{}},"felix_creation_enabled":{"g":"","p":{}},"felix_creation_fb_crossposting":{"g":"","p":{}},"felix_creation_fb_crossposting_v2":{"g":"","p":{}},"felix_creation_validation":{"g":"","p":{}},"felix_creation_video_upload":{"g":"","p":{}},"felix_early_onboarding":{"g":"","p":{}},"profile_enhance_li":{"g":"","p":{}},"profile_enhance_lo":{"g":"control","p":{"has_tagged":"false"}},"comment_enhance":{"g":"","p":{}},"mweb_topical_explore":{"g":"","p":{}},"follow_all_fb":{"g":"","p":{}},"lite_direct_upsell":{"g":"","p":{}},"web_loggedout_noop":{"g":"","p":{}},"a2hs_heuristic_uc":{"g":"","p":{}},"a2hs_heuristic_non_uc":{"g":"","p":{}},"web_hashtag":{"g":"","p":{}},"web_hashtag_logged_out":{"g":"control_hashtag_follow_lo","p":{}},"header_scroll":{"g":"","p":{}},"web_lo_follow":{"g":"","p":{}},"web_share":{"g":"","p":{}},"lite_rating":{"g":"","p":{}},"web_embeds_share":{"g":"","p":{}},"web_share_lo":{"g":"","p":{}},"web_embeds_logged_out":{"g":"","p":{}},"web_datasaver_mode":{"g":"","p":{}},"lite_datasaver_mode":{"g":"","p":{}},"post_options":{"g":"","p":{}},"igtv_creation_feed_preview":{"g":"","p":{}},"igtv_public_viewing":{"g":"","p":{}},"caching":{"g":"","p":{}},"nux":{"g":"","p":{}},"iglmsr":{"g":"multi_step_reg_with_prefill","p":{"has_multi_step_registration":"true","has_prefill":"true"}},"igwsvl":{"g":"","p":{}},"iglcp":{"g":"control","p":{"has_login_prefill":"false"}},"lite_story_video_upload":{"g":"","p":{}},"iglscioi":{"g":"","p":{}},"ws2":{"g":"","p":{}},"wpn":{"g":"","p":{}},"hc":{"g":"","p":{}},"lite_user_tag_creation":{"g":"","p":{}},"iglcius":{"g":"","p":{}},"wfvu":{"g":"","p":{}},"iglsa":{"g":"","p":{}},"igwllre":{"g":"","p":{}},"wss2":{"g":"","p":{}},"igwlspe":{"g":"","p":{}},"sticker_tray":{"g":"","p":{}},"web_sentry":{"g":"","p":{}},"igwspe":{"g":"","p":{}},"2":{"p":{"0":false},"qex":true}},"probably_has_app":false},"rollout_hash":"46f49c18c4f1","bundle_variant":"metro","is_canary":false};</script>

The JSON of interest is entirely included inside line 284 of the page sourcecode. Only the part between curly brackets can be used as an input for jq (otherwise an error will be generated): this is the actual JSON block. To extract it from the rest of the page, sed is a suitable tool. It operates line by line: from FreeBSD’s sed(1) manpage,

Normally, sed cyclically copies a line of input, not including its termi-
nating newline character, into a pattern space, (unless there is some-
thing left after a ``D'' function), applies all of the commands with
addresses that select that pattern space, copies the pattern space to the
standard output, appending a newline, and deletes the pattern space.

Also, from Wikibooks,

Sed is line-oriented – it operates one line at a time – and allows regular expression matching and substitution.

In line 284, in particular, sed should detect and print all the characters between

                         <script type="text/javascript">window._sharedData = 

(with a final space) and

;</script>

This can be accomplished through an appropriate use of Regular Expressions:

sed -nEe 's/^.*sharedData = (.*);<\/script>$/\1/p'

Option -n prevents sed from printing all the lines, in addition to the selected (and modified) one. Option -E enables use of more advanced and modern Regular Expressions: basic, default ones would be too limited for this case. Option -e enables the use of the following string as a command:

's/^.*sharedData = (.*);<\/script>$/\1/p'

It performs a substitution, as the pattern s/string1/string2/p' suggests. Consider a line beginning with any occurrence of any character, ^.*, followed by the string sharedData = . This matches, for example,

                         <script type="text/javascript">window._sharedData = 

Consider then, as a separate group of characters, all the following ones (which can be any occurrence of any character, .*), until ;<\/script>$, which should also be the end of the line. Slash character in </script> is escaped through a backslash \, to avoid confusion with the substitution command syntax s/string1/string2/p. $ indicates that the previous characters represent the end of the line.

From now on, the separate group, isolated from the rest of the line through the round brackets (), can be referred to as \1 (being it the first, and only in this example, group).

The whole 's/^.*sharedData = (.*);<\/script>$/\1/p' performs the following substitution: «in the line which matches the structure ^.*sharedData = (.*);<\/script>$, replace this whole structure with the group \1 only, and print the resulting modified line», as stated by the final p.

sed processes each line of the webpage sourcecode individually. In this example, only line 284 will generate a match.

The JSON can be now obtained as:

user@jclient:~$ curl 'https://www.instagram.com/p/BpDGK9nnY_Z/' 2>/dev/null | sed -nEe 's/^.*sharedData = (.*);<\/script>$/\1/p' | less

It is

{"config":{"csrf_token":"DbDbSRdfDKF7wxj5m6UPw09xDIuQKQKQ","viewer":null,"viewerId":null},"country_code":"IT","language_code":"en","locale":"en_US","entry_data":{"PostPage":[{"graphql":{"shortcode_media":{"__typename":"GraphImage","id":"1892383410062462937","shortcode":"BpDGK9nnY_Z","dimensions":{"height":1123,"width":1080},"gating_info":null,"media_preview":"ACkq59RmrCL6VGgq2i+lMQqL61Z8sEdKaENOB7GlcdjPlj2mq+KuS81WpiHoKuxiqsVW1GKTGjWjiQpnvWbMMGnCUgYqu7ZqUUyvKar1JIahzVkE8LbTWmrBl96xl61aQ8UAWHbFVnenGq70hjGbNR0tFMD/2Q==","display_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a45f26e3f353054abd1b5327ef3e0e40/5D0C5567/t51.2885-15/fr/e15/p1080x1080/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","display_resources":[{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/2d63156ec7f76874812d3ccbab763303/5D23478F/t51.2885-15/sh0.08/e35/p640x640/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":640,"config_height":665},{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/c89f49eac819cc9d0eced4a4764a4a37/5D20ED8F/t51.2885-15/sh0.08/e35/p750x750/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":750,"config_height":779},{"src":"https://scontent-mxp1-1.cdninstagram.com/vp/a45f26e3f353054abd1b5327ef3e0e40/5D0C5567/t51.2885-15/fr/e15/p1080x1080/43778265_167209230886392_7569456462140543999_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","config_width":1080,"config_height":1123}],"accessibility_caption":"No photo description available.","is_video":false,"should_log_client_event":false,"tracking_token":"eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiYTM4M2IzYmYxMjVmNGUzZWE1YmU5YTZlMzllMmQ4YWYxODkyMzgzNDEwMDYyNDYyOTM3In0sInNpZ25hdHVyZSI6IiJ9","edge_media_to_tagged_user":{"edges":[]},"edge_media_to_caption":{"edges":[{"node":{"text":"This spiral galaxy has a bright, active core, powered by a supermassive black hole. But how do we learn more about the voraciously feeding black hole at its center - and how it affects other galaxies? Our forthcoming James Webb Space Telescope's sharp vision will be able to see into the swirling material inside the galaxy and measure the motions of stars - one way to confirm the black hole's mass. \nCredits: NASA, ESA, and J. DePasquale (STScI)\n#nasa #solarsystem #science #cosmos #blackholes #galaxy #stars #beautiful #pictureoftheday #universe #astronomy"}}]},"caption_is_edited":true,"has_ranked_comments":false,"edge_media_to_comment":{"count":2530,"page_info":{"has_next_page":true,"end_cursor":"QVFDb0Z0TGVKc3E3R0hUOGNfVC10eXNRdTV1SVV4a1ViQVRYVS1rSzd1QWNjSjJoRnFXdXd1VUF4cmV1eWpQYWFvTTVLX2owd3puQkRMZm81aDVmTEhuNQ=="},"edges":[{"node":{"id":"18024164737022170","text":"@missbliss46 wtf this is copyright sis, NASA is just a bald man living in his mums basement","created_at":1547807150,"did_report_as_spam":false,"owner":{"id":"1782179886","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/1676425ea6335647dd3d50bbc71c8630/5D168181/t51.2885-19/s150x150/50003743_319204828718699_1789569751047995392_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"unexplainablepatric"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18022896985055751","text":"@unexplainablepatric honestly NASA can\u2019t trick us anymore now what we know the truth. Like the \u201cmoon landing\u201d FAKE \u201ccircle earth\u201d FAKE. The earth is flat \ud83d\ude31","created_at":1547807209,"did_report_as_spam":false,"owner":{"id":"6027663131","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/877a0a4bfc243ec7c65433fdadd3cc78/5D1CF76E/t51.2885-19/s150x150/47582101_218752055695458_4520459555850682368_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"stephanieku_o"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18004919218123857","text":"@stephaniek2003 flat earth community unite","created_at":1547807251,"did_report_as_spam":false,"owner":{"id":"6027663131","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/877a0a4bfc243ec7c65433fdadd3cc78/5D1CF76E/t51.2885-19/s150x150/47582101_218752055695458_4520459555850682368_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"stephanieku_o"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17999749702081281","text":"@unexplainablepatric there was a typo \"snapchat\"","created_at":1547807290,"did_report_as_spam":false,"owner":{"id":"1782179886","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/1676425ea6335647dd3d50bbc71c8630/5D168181/t51.2885-19/s150x150/50003743_319204828718699_1789569751047995392_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"unexplainablepatric"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17843311564351687","text":"\u0628\u0647 \u067e\u06cc\u062c \u0645\u0646 \u0647\u0645 \u0633\u0631 \u0628\u0632\u0646\u06cc\u062f","created_at":1548026298,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17996072890176723","text":"\"voc\u00eas est\u00e3o todos errados, tudo isso \u00e9 um monte de tartaruga uma em cima da outra\"","created_at":1548178733,"did_report_as_spam":false,"owner":{"id":"8538924367","is_verified":false,"profile_pic_url":"https://instagram.fada1-4.fna.fbcdn.net/vp/2d063ac6341e3ecb1d71a60da14ac152/5D2CF3F1/t51.2885-19/44884218_345707102882519_2446069589734326272_n.jpg?_nc_ad=z-m\u0026_nc_ht=instagram.fada1-4.fna.fbcdn.net","username":"danielbar.ros"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18006011653123953","text":"Milky way","created_at":1548181322,"did_report_as_spam":false,"owner":{"id":"10123715986","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/2b5570066a69f05536734b57b9545f6a/5D2C7657/t51.2885-19/s150x150/49858585_533407277170930_1296288084177977344_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dead_shadow2167"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17950144549237174","text":"\u0644\u0627\u06cc\u06a9","created_at":1548211885,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18026052556009892","text":"\u0644\u0627\u06cc\u06a9","created_at":1548279255,"did_report_as_spam":false,"owner":{"id":"7756980698","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/9b74590e612e0b84b05aabb10c289b19/5D176027/t51.2885-19/s150x150/52713151_2372719546112613_8520771475207094272_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"saeid_seifi492492"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17926903819264153","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the white snow that looks at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Mention it. [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548545531,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18026203102019480","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the white snow that looks at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Mention it. [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548545554,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17927019826264514","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the snow from the white snow that stares at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Says [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548550111,"did_report_as_spam":false,"owner":{"id":"7596209711","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/83a47b04de4b8164146f4fa76109ad4f/5D095BC5/t51.2885-19/s150x150/50940489_629853697445686_4490521447659208704_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme.ir"},"viewer_has_liked":false,"edge_liked_by":{"count":2}}},{"node":{"id":"18003217156081075","text":"In a very important statement from the Prophet of the Muslims about the galaxies: \"Allah has created the transcendence of the throne and the seat from his light, and the throne is seated, and the angels are within the seat, and the four corners are around the throne: a lake of light shining, a fire of fire The tabernacle, and the snow from the white snow that stares at the eyes, and the water of the water, and the angels stand in the streams, and praise God in glory, the throne has the language of all the people who speak the language, and glorify God with all of them. Says [4]\nImam Sadeq (as quoted by his fathers) as Imam Ali (as): Holy Prophet Muhammad (peace be upon him), peace be upon him, said: \"In heaven, there are houses that are seen outside them, and inside them out of them.\"\n[4]: in Al-Mansour 3: 297\nI have over 400 500 speakers of the Imams and the Prophet of Islam about the features and wonders of the universe. If you would like to tell me to send you, we will be glad.","created_at":1548550114,"did_report_as_spam":false,"owner":{"id":"7596209711","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/83a47b04de4b8164146f4fa76109ad4f/5D095BC5/t51.2885-19/s150x150/50940489_629853697445686_4490521447659208704_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme.ir"},"viewer_has_liked":false,"edge_liked_by":{"count":2}}},{"node":{"id":"18010774216117895","text":"\u0628\u0627 \u0639\u0631\u0636 \u0645\u0639\u0630\u0631\u062a \u0645\u0646 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc \u062f\u0627\u0631\u0645 \u0648 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u062a\u0648\u0633\u0637 \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0631\u062c\u0645\u0647 \u06af\u0631 \u06af\u0648\u06af\u0644 \u062a\u0631\u062c\u0645\u0647 \u0645\u06cc \u06a9\u0646\u0645 \u0648 \u0633\u062e\u0646\u0627\u0646 \u062f\u0631\u0628\u0627\u0631\u0647 \u06a9\u0647\u06a9\u0634\u0627\u0646 \u0647\u0627 \u062f\u0686\u0627\u0631 \u0627\u062e\u062a\u0644\u0627\u0644 \u0645\u06cc \u0634\u0648\u0646\u062f \u0648 \u062f\u0631\u0633\u062a \u0627\u0646\u0686\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u0645 \u062a\u0631\u062c\u0645\u0647 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0646\u0638\u0648\u0631\u0645 \u0631\u0627 \u0627\u0634\u062a\u0628\u0627\u0647 \u06af\u06cc\u0631\u062f \u062e\u0648\u062f\u062a\u0627 \u0633\u0639\u06cc \u062f\u0642\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0627\u0646\u0686\u0647 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0639\u0642\u0644 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f","created_at":1548550976,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17918937475272250","text":"Sorry, I have these words in Farsi and translate these words into English by the Google Translator program, and the words about the galaxies are interrupted, and I just do not translate what I want and may make me wrong. Carefully take care of your words and make them read in accordance with the wisdom\u0628\u0627 \u0639\u0631\u0636 \u0645\u0639\u0630\u0631\u062a \u0645\u0646 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc \u062f\u0627\u0631\u0645 \u0648 \u0627\u06cc\u0646 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0628\u0647 \u0632\u0628\u0627\u0646 \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u062a\u0648\u0633\u0637 \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0631\u062c\u0645\u0647 \u06af\u0631 \u06af\u0648\u06af\u0644 \u062a\u0631\u062c\u0645\u0647 \u0645\u06cc \u06a9\u0646\u0645 \u0648 \u0633\u062e\u0646\u0627\u0646 \u062f\u0631\u0628\u0627\u0631\u0647 \u06a9\u0647\u06a9\u0634\u0627\u0646 \u0647\u0627 \u062f\u0686\u0627\u0631 \u0627\u062e\u062a\u0644\u0627\u0644 \u0645\u06cc \u0634\u0648\u0646\u062f \u0648 \u062f\u0631\u0633\u062a \u0627\u0646\u0686\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u0645 \u062a\u0631\u062c\u0645\u0647 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0646\u0638\u0648\u0631\u0645 \u0631\u0627 \u0627\u0634\u062a\u0628\u0627\u0647 \u06af\u06cc\u0631\u062f \u062e\u0648\u062f\u062a\u0627 \u0633\u0639\u06cc \u062f\u0642\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0633\u062e\u0646\u0627\u0646 \u0631\u0627 \u0627\u0646\u0686\u0647 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0639\u0642\u0644 \u0627\u0633\u062a \u062f\u0631\u0633\u062a \u06a9\u0646\u06cc\u062f \u0648 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f","created_at":1548556545,"did_report_as_spam":false,"owner":{"id":"4980586128","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/dffecfd6418e99952cede24f6d8dc944/5D4ECB5C/t51.2885-19/s150x150/51961998_799310527111417_5130666652177793024_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"yosofefateme"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18011935726104687","text":"\u0646\u0638\u0631\u062a\u0648\u0646 \u0631\u0627\u062c\u0628 \u0646\u06cc\u0648\u06cc\u0648\u0631\u0633\u06cc\u062a\u06cc \u06cc\u0627 \u062f\u0628\u06cc \u06cc\u0627 \u062a\u0631\u06a9\u06cc\u0647 \u0686\u06cc\u0647 \u061f \u0627\u06af\u0631 \u0627\u0632 \u062f\u06cc\u062f\u0646 \u0645\u0646\u0627\u0637\u0642 \u0632\u06cc\u0628\u0627\u06cc \u062f\u0646\u06cc\u0627 \u0644\u0630\u062a \u0645\u06cc\u0628\u0631\u06cc\u062f \u0628\u0647 \u067e\u06cc\u062c \u0645\u0646 \u0633\u0631 \u0628\u0632\u0646\u06cc\u062f \ud83c\udf39\u0627\u0631\u0627\u062f\u062a \u0645\u0646\u062f \u0634\u0645\u0627 \u0632\u0627\u0631\u0627","created_at":1548659519,"did_report_as_spam":false,"owner":{"id":"6005250754","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/99286dcb6bd777e450f8087b9287d615/5D1EB2EB/t51.2885-19/s150x150/37947998_245067519661138_2530257743374188544_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"world_travel_pixs"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17848562290344673","text":"this is lie the earth is FLAT","created_at":1548897412,"did_report_as_spam":false,"owner":{"id":"7512733049","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/09629cdce060b018b3e2ab826420902d/5D0F8F29/t51.2885-19/s150x150/53527579_566321777209298_1216816298550362112_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"french_frier_potatoegurl"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18014478829097932","text":"@wcf  \u062d\u062a\u0649 \u0647\u0646\u0627 \u0645\u0648\u062c\u0648\u062f \u0645\u0648 \u0644\u0630\u064a \u0627\u0644\u062f\u0631\u062c\u0647 \u0627\u0644\u0644\u0647 \u064a\u0633\u0639\u062f\u0643","created_at":1549236711,"did_report_as_spam":false,"owner":{"id":"8318092561","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/fd63e50d7ec78275c04cdc9b93599ebc/5D206391/t51.2885-19/s150x150/53014752_1445979258876551_2137795172442832896_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"iiiwrm5"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17857800586332611","text":"\u062f\u0631 \u0635\u0648\u0631\u062a \u062a\u0645\u0627\u06cc\u0644 \u0627\u0632 \u067e\u06cc\u062c \u0645\u0627 \u062f\u06cc\u062f\u0646 \u06a9\u0646\u06cc\u062f","created_at":1549634828,"did_report_as_spam":false,"owner":{"id":"4980252070","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/88b9bb6fa81e73af20b8c3cc17f11af7/5D2059FC/t51.2885-19/s150x150/52390071_274786403441011_4900632378512244736_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"icg.official"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17869356754311618","text":"@jonny_haf","created_at":1549974125,"did_report_as_spam":false,"owner":{"id":"2529885483","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/36fe4358f7290b762fff7aaa69a3776e/5D09E22B/t51.2885-19/s150x150/53713938_1397250380417495_2301047411939737600_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"bon_gooooooooooo"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"17972175700203523","text":"@bon_gooooooooooo \u03c0\u03b1\u03b9\u03b4\u03b9\u03ac \u03c4\u03c9\u03bd \u03ac\u03c3\u03c4\u03c1\u03c9\u03bd","created_at":1549974419,"did_report_as_spam":false,"owner":{"id":"2912519516","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/5d332371a948f9f503796b7852fe96fd/5D2413F2/t51.2885-19/s150x150/54196531_549081798945124_2795460759742578688_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"jonny_haf"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18003386365179059","text":"@jonny_haf \u2604\u2b50\ud83d\ude80","created_at":1549974641,"did_report_as_spam":false,"owner":{"id":"2529885483","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/36fe4358f7290b762fff7aaa69a3776e/5D09E22B/t51.2885-19/s150x150/53713938_1397250380417495_2301047411939737600_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"bon_gooooooooooo"},"viewer_has_liked":false,"edge_liked_by":{"count":1}}},{"node":{"id":"18004739263146199","text":"Kara delikkk\ud83d\ude02","created_at":1550609841,"did_report_as_spam":false,"owner":{"id":"7893041518","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/e8a37ed2d48e8a1775a40e630e6a3fb0/5D1BE8CA/t51.2885-19/s150x150/53337076_1507031446098417_2189515095606820864_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"onur.yesilyurt.526"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17970164434221392","text":"@jamescameronofficial https://youtu.be/UeTmE71uEaw","created_at":1550629931,"did_report_as_spam":false,"owner":{"id":"11123427702","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/68bf7a267b130c502fadc034ea027edf/5D076EFC/t51.2885-19/s150x150/52736717_2192647434384791_1829697080738709504_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"sunflowerturkana_omar"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18028836286074611","text":"And","created_at":1550800663,"did_report_as_spam":false,"owner":{"id":"4558927495","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/69e570ba852403558d7e66b46b4ecdcc/5D12141C/t51.2885-19/s150x150/51522788_374616936451661_93202585619529728_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"jerughmyugh_psa"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18017586325123643","text":"This is awesome :)","created_at":1550979555,"did_report_as_spam":false,"owner":{"id":"8555163477","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/fbc13b0957e882ffbda08f860d532906/5D0E8007/t51.2885-19/s150x150/47691538_1283884925103193_5278527171994845184_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"1cod_god"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18015504772081842","text":"Looks a little like our Galaxy","created_at":1551603218,"did_report_as_spam":false,"owner":{"id":"2054347438","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a71be0ea9abc7e790be429c6c6c87a58/5D4DB192/t51.2885-19/11311048_1615949078678181_738607336_a.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dadofnature"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"17973887617217285","text":"Mote of dust suspended in the Sunbeam","created_at":1551603246,"did_report_as_spam":false,"owner":{"id":"2054347438","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a71be0ea9abc7e790be429c6c6c87a58/5D4DB192/t51.2885-19/11311048_1615949078678181_738607336_a.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"dadofnature"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}},{"node":{"id":"18041192623055013","text":"Breathtaking one","created_at":1551619931,"did_report_as_spam":false,"owner":{"id":"10859557916","is_verified":false,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/a24b63c62d98c635cc1d5c66b4033aea/5D1BD5A0/t51.2885-19/s150x150/51674689_2027147827354587_4589424288104185856_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"husky.lover_ig"},"viewer_has_liked":false,"edge_liked_by":{"count":0}}}]},"comments_disabled":false,"taken_at_timestamp":1539809703,"edge_media_preview_like":{"count":647933,"edges":[]},"edge_media_to_sponsor_user":{"edges":[]},"location":null,"viewer_has_liked":false,"viewer_has_saved":false,"viewer_has_saved_to_collection":false,"viewer_in_photo_of_you":false,"viewer_can_reshare":true,"owner":{"id":"528817151","is_verified":true,"profile_pic_url":"https://scontent-mxp1-1.cdninstagram.com/vp/4b1cd7b7ecb68da725eb38013d083253/5D2385ED/t51.2885-19/s150x150/29090066_159271188110124_1152068159029641216_n.jpg?_nc_ht=scontent-mxp1-1.cdninstagram.com","username":"nasa","blocked_by_viewer":false,"followed_by_viewer":false,"full_name":"NASA","has_blocked_viewer":false,"is_private":false,"is_unpublished":false,"requested_by_viewer":false},"is_ad":false,"edge_web_media_to_related_media":{"edges":[]}}}}]},"hostname":"www.instagram.com","deployment_stage":"c2","platform":"web","rhx_gis":"e4ed1832b5207cf66c17545d3efac165","nonce":"G0Jfn7Syl9HxaOO8KlzALQ==","mid_pct":1.45198,"zero_data":{},"cache_schema_version":2,"server_checks":{},"knobs":{"acct:ntb":0,"cb":0,"captcha":0,"fr":0},"to_cache":{"gatekeepers":{"cb":true,"sw":true,"seo":true,"seoht":true,"phone_qp":true,"nt":true,"rp":true,"3":false,"4":false},"qe":{"sdc":{"g":"","p":{}},"iab":{"g":"","p":{}},"app_upsell":{"g":"","p":{}},"igl_app_upsell":{"g":"","p":{}},"profile_header_name":{"g":"","p":{}},"bc3l":{"g":"","p":{}},"direct_conversation_reporting":{"g":"","p":{}},"frx_reporting":{"g":"","p":{}},"general_reporting":{"g":"","p":{}},"reporting":{"g":"","p":{}},"acc_recovery_link":{"g":"","p":{}},"notif":{"g":"","p":{}},"mobile_stories_doodling":{"g":"","p":{}},"show_copy_link":{"g":"","p":{}},"p_edit":{"g":"","p":{}},"404_as_react":{"g":"","p":{}},"acc_recovery":{"g":"","p":{}},"bundle":{"g":"","p":{}},"collections":{"g":"","p":{}},"dir":{"g":"","p":{}},"comment_ta":{"g":"","p":{}},"su":{"g":"","p":{}},"ebd_ul":{"g":"control_no_universal","p":{"is_enabled":"false"}},"ebdsim_li":{"g":"","p":{}},"ebdsim_lo":{"g":"","p":{}},"empty_feed":{"g":"","p":{}},"appsell":{"g":"","p":{}},"heart_tab":{"g":"","p":{}},"follow_button":{"g":"","p":{}},"log_cont":{"g":"","p":{}},"msisdn":{"g":"","p":{}},"onetaplogin":{"g":"","p":{}},"onetap":{"g":"","p":{}},"profile_tabs":{"g":"","p":{}},"multireg_iter":{"g":"test_back_removed_11_30","p":{"has_back_removed":"true"}},"reg_vp":{"g":"test_group_1","p":{"hide_value_prop":"true"}},"report_media":{"g":"","p":{}},"report_profile":{"g":"","p":{}},"su_universe":{"g":"","p":{}},"stale":{"g":"","p":{}},"tp_pblshr":{"g":"","p":{}},"video":{"g":"","p":{}},"felix":{"g":"","p":{}},"felix_clear_fb_cookie":{"g":"","p":{}},"felix_creation_duration_limits":{"g":"","p":{}},"felix_creation_enabled":{"g":"","p":{}},"felix_creation_fb_crossposting":{"g":"","p":{}},"felix_creation_fb_crossposting_v2":{"g":"","p":{}},"felix_creation_validation":{"g":"","p":{}},"felix_creation_video_upload":{"g":"","p":{}},"felix_early_onboarding":{"g":"","p":{}},"profile_enhance_li":{"g":"","p":{}},"profile_enhance_lo":{"g":"","p":{}},"comment_enhance":{"g":"","p":{}},"mweb_topical_explore":{"g":"","p":{}},"follow_all_fb":{"g":"","p":{}},"lite_direct_upsell":{"g":"","p":{}},"web_loggedout_noop":{"g":"","p":{}},"a2hs_heuristic_uc":{"g":"","p":{}},"a2hs_heuristic_non_uc":{"g":"","p":{}},"web_hashtag":{"g":"","p":{}},"web_hashtag_logged_out":{"g":"","p":{}},"header_scroll":{"g":"","p":{}},"web_lo_follow":{"g":"","p":{}},"web_share":{"g":"","p":{}},"lite_rating":{"g":"","p":{}},"web_embeds_share":{"g":"","p":{}},"web_share_lo":{"g":"","p":{}},"web_embeds_logged_out":{"g":"test_comment_input","p":{"show_comment_input":"true"}},"web_datasaver_mode":{"g":"","p":{}},"lite_datasaver_mode":{"g":"","p":{}},"post_options":{"g":"","p":{}},"igtv_creation_feed_preview":{"g":"","p":{}},"igtv_public_viewing":{"g":"","p":{}},"caching":{"g":"","p":{}},"nux":{"g":"","p":{}},"iglmsr":{"g":"multi_step_reg","p":{"has_prefill":"false","has_multi_step_registration":"true"}},"igwsvl":{"g":"","p":{}},"iglcp":{"g":"control","p":{"has_login_prefill":"false"}},"lite_story_video_upload":{"g":"","p":{}},"iglscioi":{"g":"","p":{}},"ws2":{"g":"","p":{}},"wpn":{"g":"","p":{}},"hc":{"g":"","p":{}},"lite_user_tag_creation":{"g":"","p":{}},"iglcius":{"g":"","p":{}},"wfvu":{"g":"","p":{}},"iglsa":{"g":"","p":{}},"igwllre":{"g":"","p":{}},"wss2":{"g":"","p":{}},"igwlspe":{"g":"","p":{}},"sticker_tray":{"g":"","p":{}},"web_sentry":{"g":"","p":{}},"igwspe":{"g":"","p":{}},"2":{"p":{"0":false},"qex":true}},"probably_has_app":false},"rollout_hash":"46f49c18c4f1","bundle_variant":"metro","is_canary":true}

and it is pretty unreadable, as anticipated. The simplest use of jq, shown in the repository tutorial, is already an improvement for the code appearance:

user@jclient:~$ curl 'https://www.instagram.com/p/BpDGK9nnY_Z/' 2>/dev/null | sed -nEe 's/^.*sharedData = (.*);<\/script>$/\1/p' | jq '.'

{
  "config": {
    "csrf_token": "2hLsxxkHTvHtVKFtnnY7Wz3v1BfIy0dO",
    "viewer": null,
    "viewerId": null
  },
  "country_code": "IT",
  "language_code": "en",
  "locale": "en_US",
  "entry_data": {
    "PostPage": [
      {
        "graphql": {
          "shortcode_media": {
            "__typename": "GraphImage",
            "id": "1892383410062462937",
            "shortcode": "BpDGK9nnY_Z",
            "dimensions": {
              "height": 1123,
              "width": 1080
            },
            ...

This output can be redirected to a file, or to less through a pipe, to further inspection.

The timings

The JSON block in line 284 is huge, with a length of 29491 characters. The same block, formatted with jq, includes a big amount of newline characters and its length grows to 43293 characters. With current multi-core, high frequency CPUs this could be negligible, but it is not a general rule.

With an Intel® Core™ i5-4670 CPU at 3.40 GHz running Ubuntu 18.04, the formatted JSON is obtained with no detectable delay (with the one-liner used above, with Ubuntu sed and jq).

With this CPU equipment

user@jclient:~$ sysctl hw.model hw.machine hw.ncpu
hw.model: Intel(R) Core(TM)2 Duo CPU     T5870  @ 2.00GHz
hw.machine: amd64
hw.ncpu: 2

running FreeBSD 12.0-RELEASE, the length of such a string makes the difference instead.

Note: it has not been possible to perform the most logical test, that is using the same OS for both the processors. Consequently, the bottleneck may, or may not, be also represented by the OS and its available versions of sed and jq.

If the one-liner

user@jclient:~$ curl 'https://www.instagram.com/p/BpDGK9nnY_Z/' 2>/dev/null | sed -nEe 's/^.*sharedData = (.*);<\/script>$/\1/p' | jq '.'

is run on the second and slower machine, with Intel® Core™ 2 Duo CPU T5870 at 2.00 GHz, prompt seems to never return. If the string were not found (for example, due to some difference on the Regular Expressions syntax required by FreeBSD’s implementation of sed), prompt would return with an error and no match. In this case instead, it seems to wait, or to endlessly search for a path matching in some line.

There is no syntax error in the Regular Expression. A shorter line, with the same beginning and the same end of the JSON block, is correctly processed.

The unexpected behaviour may then be the consequence of a maximum line length allowed by FreeBSD’s sed implementation. From GNU documentation:

Some implementations have been known to limit line lengths (for the pattern and hold spaces) to be no more than 4000 bytes. The POSIX standard specifies that conforming sed implementations shall support at least 8192 byte line lengths. GNU sed has no built-in limit on line length; as long as it can malloc() more (virtual) memory, you can feed or construct lines as long as you like. However, recursion is used to handle subpatterns and indefinite repetition. This means that the available stack space may limit the size of the buffer that can be processed by certain patterns.

In STANDARDS section, FreeBSD’s sed(1) states that:

The sed utility is expected to be a superset of the IEEE Std 1003.2
(``POSIX.2'') specification.

which only grants that a string length of 8192 bytes is supported. It is still not enough for the JSON block.

If a test string with length sligthly greater than 8192 is provided to sed, it performs as expected, but after some amount of human-measurable time. With longer test strings, the amount of time increases. If the original JSON string is provided, after several dozens of seconds, this is the output of top:

last pid: 46328;  load averages:  0.94,  0.51,  0.31                                            up 4+02:30:40  16:00:33
58 processes:  2 running, 56 sleeping
CPU: 51.8% user,  0.0% nice,  0.6% system,  0.0% interrupt, 47.6% idle
Mem: 1622M Active, 182M Inact, 172M Laundry, 620M Wired, 214M Buf, 352M Free
Swap: 6144M Total, 2771M Used, 3373M Free, 45% Inuse, 24K In

  PID USERNAME    THR PRI NICE   SIZE    RES STATE    C   TIME    WCPU COMMAND
41707 user          1 102    0    11M  2608K CPU0     0   0:53  99.55% sed

sed is still using almost entirely a processor. It was not stuck and, after a long wait, the expected formatted JSON block is eventually provided. Performing several tests with the JSON string from the Instagram webpage, the required time varied from 1m57s to 2m15s.

This old and slow system is therefore able to produce the expected result as well, but only after a long wait, due to the unusual length of the string.