Unable to get the full amount of comments #790
-
Hi,I can't seem to get all the comment info and all the postings using this? I didn't find all the comments inside full_comment, here is the example: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I'm unable to reproduce this issue. The code: set_cookies("cookies.txt")
post = next(get_posts(post_urls=["https://www.facebook.com/nintendo/posts/5417215251696217"], options={"comments": True}))
print(f"Comments: {post['comments']}, Top level comments: {len(post['comments_full'])}, Replies: {sum(len(c['replies']) for c in post['comments_full'])}") outputs: Comments: 336, Top level comments: 113, Replies: 129 for me. Try update to version 0.2.57 with |
Beta Was this translation helpful? Give feedback.
I'm unable to reproduce this issue. The code:
outputs:
for me. Try update to version 0.2.57 with
pip install -U facebook-scraper
.