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

[Breaking Bug] get_post is not returning any posts

Open moda20 opened this issue 1 year ago • 14 comments

Trying this example with cookies, doesn't yield any posts

for post in get_posts('nintendo', pages=1):
    print(post['text'][:50])

it seems to not find posts in pages here :

                for post_element in page:
                    post = extract_post_fn(post_element, options=options, request_fn=self.get)
                    if remove_source:
                        post.pop('source', None)
                    yield post

Is there anything missing ?

moda20 avatar Nov 11 '23 20:11 moda20

Maybe you can try issue #1066 It's working for me.

eric09230 avatar Nov 12 '23 00:11 eric09230

@eric09230 I tried that but it's not working for me at all, still getting the same zero posts.

moda20 avatar Nov 12 '23 21:11 moda20

@kevinzg @eric09230 It seems the code references the layout used by mbasic facebook, not the m.facebook. but the URL used to start the scrapping is m.facebook which results in completely different UI and no posts returned. Can someone look into this ?

moda20 avatar Nov 13 '23 21:11 moda20

Did you login properly?I also can't get any post but after I login by cookie.json I can see the post has been scrapt.

eric09230 avatar Nov 15 '23 13:11 eric09230

But I keep getting banned. So I'm using this https://github.com/shaikhsajid1111/facebook_page_scraper instead. No more banned message.

eric09230 avatar Nov 15 '23 13:11 eric09230

@eric09230 Yes i did login, i plan on trying with a different account btu i fear facebook will ban me an my actual account. i will try the other repo and see

moda20 avatar Nov 19 '23 20:11 moda20

@eric09230 I figured what the issue is. it seems for my case m.facebook layout has completely changed and this repo is not made to scrap that. the fix was to use startUrl props to specifically use the mbasic.facebook version which still works well with this repo. (start_url="https://mbasic.facebook.com/<pageID>?v=timeline"). the v=timeline argument is mandatory as the repo doesn't go there on it's own.

the second issue is one with high res images of posts, the image link has changed and the repo needed a small update, i updated it on my fork : https://github.com/moda20/facebook-scraper

moda20 avatar Nov 25 '23 15:11 moda20

if it doesn't require an API key, then how come you have to login? And where is the login info stored?

Plus that the last commit is Oct-10, how come it can be broken from then?

ooker777 avatar Nov 29 '23 05:11 ooker777

it seems for my case m.facebook layout has completely changed and this repo is not made to scrap that. the fix was to use startUrl props to specifically use the mbasic.facebook version which still works well with this repo. (start_url="https://mbasic.facebook.com/?v=timeline"). the v=timeline argument is mandatory as the repo doesn't go there on it's own.

Sorry to bug, but when you say adding a starting url works, for example how would you incorporate that in this code:

for post in get_posts('nintendo', pages=1): print(post['text'][:50])

Would you mind explaining how you are incorporating the start_url?

LuciaIllari avatar Dec 03 '23 21:12 LuciaIllari

@LuciaIllari using the nintendo example, use the start url like this :

for post in get_posts(account="nintendo", start_url="https://mbasic.facebook.com/nintendo?v=timeline",
              cookies='<Path to your cookies file>')) : 
    print(post['text'][:50])

moda20 avatar Dec 03 '23 21:12 moda20

I have the same problem since December 2nd. Previously I could receive posts from one account, now I only receive empty []. Configuring start_url does not solve the problem. I use cookies, but changing to "credentials", even with other user or different IP doesn't help. Has Facebook made any changes?

TBKRK avatar Dec 04 '23 09:12 TBKRK

Repo stopped working for me getting Facebook Page data about two weeks ago - I get no posts found now.

bluusun avatar Dec 14 '23 16:12 bluusun

same here cant scrape a thing

Zhigalin avatar Dec 15 '23 13:12 Zhigalin

@bluusun @Zhigalin please check this fork that i am working on : https://github.com/moda20/facebook-scraper it's not a drop in replacement however please check the readme before trying the old examples

moda20 avatar Dec 15 '23 13:12 moda20