Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to retrieve all images from multiple photo post on Instagram

Recently Instagram announced support for multiple photos post.

I tried with endpoint, GET /media/media-id, but response has information about only one image.

Anyone is able to retrieve all images from single multiple photo post using their API?

Thanks.

like image 380
Kevin Avatar asked Feb 27 '17 17:02

Kevin


People also ask

Is there a way to get all your photos from Instagram?

Tap in the top right, then tap Settings. Tap Account, then tap Original posts. Tap next to Save original posts to turn it on. Tap next to Save posted photos/Save posted videos to turn it on.

Can you delete one photo from a multi photo Instagram post?

Step 1: Find the carousel you want to delete the photo from and tap the three dots icon on the top right corner of your screen. Step 2: A menu will appear. From that menu, tap Edit. Step 3: On the top left corner of your carousel, you'll see a garbage bin icon appear.

How do you mass save photos from Instagram?

In the Instagram app, tap your Profile icon in the bottom-right of the app, then open the three-line menu at the top-right and choose Settings from the resulting window. On the next menu, choose Account > Original Posts. Enable the options here to save copies of everything you post to your phone's storage.

Can you archive one of multiple pictures on Instagram?

Unfortunately, the Instagram application doesn't support bulk archiving. You can just archive the posts one by one in the Instagram app.


1 Answers

Not available in official API yet, but you can use the "Instagram Photo Page URL" and add ?__a=1, this will give you JSON with all the multi-images in it.

For example:

https://www.instagram.com/p/BQ00n_BB7Dm/?__a=1

You will get JSON response with media.edge_sidecar_to_children.edges[] will have all media urls and info

like image 173
krisrak Avatar answered Nov 15 '22 14:11

krisrak