question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Empty `comments_full` in live post

See original GitHub issue

Hi @neon-ninja, I’m trying to get comments from live posts:

next(get_posts(
            post_urls=["100066517395693"],
            cookies=os.path.join(os.getcwd(), "../cookies.txt"),
            options={'comments': True}
        ))

but can’t get any comment. It’s working fine with normal posts. Could you please take a look? Thanks a ton!

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:14

github_iconTop GitHub Comments

1reaction
neon-ninjacommented, Nov 23, 2021

post_urls expects IDs or URLs pointing to individual posts. This ID points to a profile. Don’t use post_urls in that case. Like so:

post = next(get_posts("100066517395693", options={'comments': True}))

Or

post = next(get_posts(post_urls=["3066847430218880"], options={'comments': True}))
0reactions
hungphamvncommented, Nov 26, 2021

Yeah, This seems a lot better but there is another issue with Facebook on the mobile version that they didn’t display the newest comments (just weird way)

Read more comments on GitHub >

github_iconTop Results From Across the Web

How To Post Blank Comment On Facebook (Or Status)
Press the enter button to publish your empty comment or status. Final Words: I hope this guide will be helpful for those who...
Read more >
How to Fix Facebook Comments Not Loading? - Step by Step
1. Facebook Comments Not Loading – Solutions. 1.1. Refresh The Facebook App; 1.2. Clear Cache from Browser; 1.3. Check your Internet Connection ...
Read more >
Why Can't I See Comments on My Facebook Live Video ...
Solution 3: Clean Facebook Cache · Open the Facebook app and choose the “More” option. · Then, Click on “Settings” and select “Account...
Read more >
View, organize, or delete comments - YouTube Help
Go to Comment History. To go to the original place you posted your comment, click or tap the content. If you commented on...
Read more >
[Solved] How to Fix Facebook Comments not Loading 2022
Solution 5: Clear the cache ... If the cached data of the Facebook app got outdated our corrupted somehow, then it could lead...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found