Nick Young

Results 319 comments of Nick Young

1 & 2. Yes. You can extract a `RequestsCookieJar` like so: ```python from facebook_scraper import _scraper from facebook_scraper import * _scraper.login(email, passsword) cookies = _scraper.session.cookies # Store & retrieve cookies...

Could you please post the code you used to cause this issue?

Try pass cookies as per the readme

https://github.com/kevinzg/facebook-scraper/commit/8fd973b40553e7cb23aef3a86f74f3d3ac973788 should fix this when not using cookies

`pip install git+https://github.com/kevinzg/facebook-scraper.git` should work to install the latest master branch into your venv The scraper tries to access https://m.facebook.com/NintendoDE/about and this triggers a redirect to https://m.facebook.com/login.php. Try pass cookies...

https://github.com/kevinzg/facebook-scraper/commit/c5f13753fb8a6cbbe00c81724657231c27898355 should fix this

Can you please post the code you used that throws this exception? And also the full traceback.

Sure, https://github.com/kevinzg/facebook-scraper/commit/ba26b7bf3a1a61dfd60246b64a37f5c5a2a492ae should solve this. Usage: ```python from facebook_scraper import _scraper from facebook_scraper import * set_cookies("cookies.txt") posts = get_posts("dudukovich", pages=10, options={'allow_extra_requests': False}) for post in posts: print(post["post_id"], post["likes"], post["reaction_count"], post["comments"])...

The scraper tried to get /posts, failed, and fell back to /

Sure, https://github.com/kevinzg/facebook-scraper/commit/089688dbe6405683aa5f9c0c87cc0de04de47d55 will stop the scraper from trying /posts