facebook-scraper icon indicating copy to clipboard operation
facebook-scraper copied to clipboard

Scrape Facebook public pages without an API key

Results 18 facebook-scraper issues
Sort by recently updated
recently updated
newest added

Hi. I'm trying to fetch the latest item listings from a FB group in chronological order but for some reason I seem to get random listings. They do appear in...

the code look for the aabr element inside a post/comment. somehow for post recently added (within 24 hour) the aabr shown as example: 1 hour ago 34 minutes ago 20...

Currently, in order to obtain the reactions it is necessary to pass the "reactors" option, the problem with this is that to search for the reactors you have to make...

Some group i can only get post from page 1, i browse mbasic version of group and also see nothing after click "See more posts" button. Example: https://mbasic.facebook.com/groups/batdongsanhannoi.edu.vn/ Does anyone...

Hi, Opening the issue again as updated to most recently updated version and get posts still not working. Below is the code and terminal output: ``` from facebook_scraper import get_posts,...

Here is my code: ``` gen = fs.get_posts( post_urls = ["https://mbasic.facebook.com/" + fanpage + "/posts/" + '939460300875189'], options = {"comments": 30, "progress": True} ) post = next(gen) comments = post['comments_full']...

@moda20 The start_url and base_url are must for get_posts. Unfortunately, these are not parameters for CLI usage (hence CLI uses m.facebook which does not return tag, therefore no posts returned.)...

Needs help

I tried get groups and it did get the post text and the time but not the post id or the user id. ![image](https://github.com/moda20/facebook-scraper/assets/5574785/6865d01e-66d6-4cf1-b5cf-e53a923c1509) BTW, thanks for continuing this project.

Needs help

I'm trying to get the commenter_id of each comment but it returns null from facebook_scraper import get_posts import json cookies = None with open('./mbasicHeaders.json', 'r') as file: cookies = json.load(file)...

When scraping for comments, I was unable to scrape the comment replies. For a comment in the JSON output, 'replies': would be empty ( 'replies': [] ), even if there...