Raphael Kalandadze

Results 20 comments of Raphael Kalandadze

Thanks, I understand now how it works. I thought I could stop an iteration on a specific post and continue later

> handle_pagination_url is called for each page, not each post. So more like this: > > ```python > def handle_pagination_url(url): > global start_url > start_url = url > raise exceptions.TemporarilyBanned...

you mean something like that? ``` def handle_pagination_url(url): global start_url, callback_lock start_url = url if callback_lock: callback_lock = False raise exceptions.TemporarilyBanned # to change account else: callback_lock = True callback_lock...

then if I use allow_extra_requests=True do I still need comments=True?

> posts_per_page only works for Pages, not Profiles yes, I run it for pages

for example https://www.facebook.com/PUMA

can you check that page? https://www.facebook.com/europeangeorgia.ge

Then do yo have any ideas how to handle this? https://github.com/kevinzg/facebook-scraper/issues/824 If there are not post_per_page how can I switch accounts and continue scraping after last post

> Hey, did you find the solution for this? I am facing the same error. unfortunately not