DEV Community

Discussion on: Scrape data from Instagram with instascrape and Python

Collapse
 
athiyarastogi profile image
Athiya Rastogi

When I enter the Profile name, the code throws this warning:

MissingCookiesWarning: Request header does not contain cookies! It's recommended you pass at least a valid sessionid otherwise Instagram will likely redirect you to their login page.
MissingCookiesWarning

Could you please help with this?

Collapse
 
chrisgreening profile image
Chris Greening

Hello! Instagram has started requiring a valid sessionid cookie when making HTTP requests. Check out this blog post for more information on getting your sessionid for scraping

Technically it is just a warning and you can usually get away with a couple scrapes before they have a problem but I've found after about a dozen scrapes they start redirecting to their login page

Collapse
 
athiyarastogi profile image
Athiya Rastogi

Thank you!