Skip to content

Instantly share code, notes, and snippets.

@jazibobs
Last active June 3, 2022 00:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jazibobs/c740da6a067aee19840c to your computer and use it in GitHub Desktop.
Save jazibobs/c740da6a067aee19840c to your computer and use it in GitHub Desktop.
Get a link to the image file from an instagram url
<!--
Use a standard instagram url such as https://www.instagram.com/p/BB70H3bMEH-/
at the end of the link append media/?size=THE_IMAGE_SIZE_YOU_WANT
-->
<!-- Get the image file as a thumbnail -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=t" alt="Instagram Image Thumbnail">
<!-- Get the medium image file -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=m" alt="Instagram Image Medium">
<!-- Get the large image file -->
<img src="https://www.instagram.com/p/BB70H3bMEH-/media/?size=l" alt="Instagram Image Large">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment