facebook-scraper: I can't get the full commnets, only 30~
`posts = facebook_scraper.get_posts( post_urls=[url], options={ “comments”: True, “progress”: True, }, cookies = cookies, extra_info=True )
post = next(posts) print(post) for n, cmt in enumerate(post[‘comments_full’]): print(n, cmt) print(len(post[‘comments_full’]))`
with this code, I’m only available to see 30 of comments.
and I got an warning message about locale, which is about en_US is best but I’m in ko_KR Am I missing something??
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 15
Try https://github.com/kevinzg/facebook-scraper/commit/1d8711658a1baf04cd389c2d44d74ebdf247046b
Thanks for the link. This commit (https://github.com/kevinzg/facebook-scraper/commit/509a7baf0c1cf0535e6c2a38cce86212f14bec3f) upgrades from demjson to demjson3
setting the facebook language to english worked for me!! Thank you for your answer!!