Nick Young

Results 319 comments of Nick Young

You need to tell the scraper you want to scrape a group, by passing the group ID with the group parameter. Also, posts_per_page has no effect for Groups, that only...

Can you share a link to an example post that causes this problem?

You can disable translations in your Facebook account settings (https://www.facebook.com/settings?tab=language) - does that work for you?

I see. This commit (https://github.com/kevinzg/facebook-scraper/commit/a38acef545019c3cf8a8f31c443c50ce81f41158) adds a new key to the post result dict, called `original_text`. Here's what https://facebook.com/262108804192078/posts/1461142234288723 looks like when extracted using the code as at that commit:...

I see - try https://github.com/kevinzg/facebook-scraper/commit/527eabafe980347a51da3e9e557cf6a752d75a2a

This sounds similar to https://github.com/kevinzg/facebook-scraper/issues/563#issuecomment-981148433. Are you passing cookies? Do you get any locale warnings?

It looks like your Facebook language is set to French, try set it to English and see if that solves the problem

Try pip install -U lxml

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

Try pass the reviews=True argument to get_page_info. Alternatively pass reviews="generator" to get a generator back. Alternatively call _scraper.get_page_reviews to bypass get_page_info if you only need reviews.