Felix Exner

Results 4 comments of Felix Exner

I started playing around with loading posts from search results this week and ran into the issue that Facebook is returning the first result immediately as a response and asynchronously...

Sorry, not sure if I can follow... the HTML response from the `self.get()` method in `facebook_scraper.py` is `response = self.session.get(url=url, **self.requests_kwargs, **kwargs)` the URL served is the same one as...

I'm getting the same results our of `response.text` as well. Here is a simplified version of the code: ```python # facebook_scraper.py def get(self, url, **kwargs): try: if not url.startswith("http"): url...

Okay, I got the `cursor=` reference now, which is only visible for me using `FB_MBASIC_BASE_URL`. So getting multiple pages in is no longer the issue, but the page scraper does...