facebook-scraper
facebook-scraper copied to clipboard
No comments are scraped
I'm using options in this way and as I know it should scrape comments as well. did I get it wrong?
options={"comments": True,
"reactors": True,
"posts_per_page": 10,
"allow_extra_requests": False,
"sharers": True},
Fetching comments requires extra requests, so allow_extra_requests set to False would disable it
then if I use allow_extra_requests=True do I still need comments=True?
Yes