drawrowfly / instagram-scraper

Instagram Scraper. Scrape useful data/posts from instagram users, hashtag and locations pages. Comments and people who liked specific posts and soon more. No login or API keys are required
568 stars 62 forks source link

Videos that show on the feed and posted using IGTV are not being returned #34

Open dotjiwa opened 3 years ago

dotjiwa commented 3 years ago

Check out handles: drbronner or gardein

I am using mediaType - all - and no videos are returning for the most recent 45 posts.

Thanks

dotjiwa commented 3 years ago

On further investigation - when using mediaType - all - on larger accounts, I mostly get back all photos, even if they have recent videos. But if I use mediaType - video - I get back the videos that were left out of the 'all' query, though sometimes they are out of order.

dotjiwa commented 3 years ago

I'm now working around in my code by firing 2 queries, one with mediaType - photo - and the other with mediaType - video - concatenating the results, sorting descending by timestamp, and taking the top desired objects in array.