scraping using group parameter doesn't do anything
See original GitHub issueHi, I’m trying to scrape public group posts but seems like it doesn’t do anything. When run the script just ends instantly without scraping any posts. Is this a bug or I’m doing something wrong?
from facebook_scraper import get_posts
def scrape_facebook_group():
posts = get_posts(group='412046226382771')
for post in posts:
print(post)
if __name__ == "__main__":
scrape_facebook_group()
Issue Analytics
- State:
- Created 2 years ago
- Comments:10
Top Results From Across the Web
Web scraping python not returning any content - Stack Overflow
The page is loaded dynamically and the data set is paged which would mean using browser automation to retrieve, which is slow.
Read more >Ultimate Guide to Web Scraping with Python Part 1: Requests ...
Request and wrangling HTML using two of the most popular Python libraries for web scraping: requests and BeautifulSoup.
Read more >How to Scrape Hidden Web Data - Scrapfly
The most common way to scraping dynamic data is to use a headless browser to force hidden data rendering in the HTML. In...
Read more >Beautiful Soup: Build a Web Scraper With Python
In this tutorial, you'll walk through the main steps of the web scraping ... is why you won't have to work with query...
Read more >Web Scraping without getting blocked | ScrapingBee
So, to determine if you are using a real browser, websites will check something that cURL and library can not do: executing JavaScript...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Try latest master
Awesome @neon-ninja