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

Scrape Facebook public pages without an API key

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

I normally call `get_posts()` like this: ```python posts = get_posts(username, cookies=cookie_file, extra_info=True, options={'page_limit': None, 'allow_extra_requests': False, 'HQ_images': False}) ``` But for posts 10215606930220434, 10111743443272349 and 10229044620250382 this doesn't return the...

facebook bug

Is there currently a way to retrieve a list of members using get_group_info? I did not see something of the sort in the documentation, so I was wondering if there...

is there any way to get all unfiltered comments from each post? seems like I'm only getting Most Relevant comments. This is my script: ``` options = { "comments": "generator",...

Hello! I'm trying to handle Temporary Ban by sleeping a litttle bit. But when TemporarilyBanned exception is raised, I see on logs that it doesn't sleep. ``` def handle_pagination_url(url): global...

Hi, I am trying to extract the about info of pages using the following lines of code: `from facebook_scraper import get_page_info` `get_page_info('CocoonsMillennialResorts', cookies='cookies.txt')` and gets the following error: `UserWarning: Facebook...

hi, i need scrape the people who leave love reaction in certain post, it is possible? or i need scrape the people who shares the post? this post as example...

Hi everyone, i have two different pages. one is scrapable and one is not. fb.com/239366402785275 won't get any results fb.com/313187412842466 this is ok code. `posts = get_posts(id, pages=10, timeout=600, options={"comments":...

hi,first time I used it, I had a few questions 1、 post_id:614591682974608 request return:404 Client Error: Not Found for url: https://m.facebook.com/614591682974608/posts/?locale=en_US 2、 can't get reactors, because the real link is:...

I am using the 0.2.57 version of facebook-scraper and I want to get the page following & follower stat. I just ran the code below ``` set_user_agent( "Mozilla/5.0 (iPhone; CPU...

Does get_photos work with groups or only accounts? I'm trying to download a group's media library. A group member is searching for a specific image among many thousands and I...