Nick Young

Results 319 comments of Nick Young

Ok, I just tested with "zuck", and got the same behavior as you - `posts_per_page` is ignored, and you get 10 posts per page. `posts_per_page` only works for Pages.

>the parameter pages works and that the number of posts returned is 10 * pages? Yes >And is the default for pages still 10 in this case? Yes >is it...

>What happens when reactors is True? Is there also 1 extra request per post actually consumed from the generator returned by get_posts()? (And possibly more than 1 if there are...

Working fine for me, this test code: ```python start="https://m.facebook.com/profile/timeline/stream/?cursor=AQHRBW_YjLW01jztkzIND8c0CFXEoeYGEyAcNFxN5yd_oh_KNi5zvniJFaJEiCWKLW3gxhvfKI1WCV7k_F4ay8pwr3ZjM7iM8KTzZmy8KqVFgHXLWuWKiNFc0h6ftXZrq4oq&start_time=-9223372036854775808&profile_id=4&replace_id=u_0_0_pK\\" post = next(get_posts("zuck", start_url=start, options={"allow_extra_requests": False})) print(post["time"]) ``` outputs: ```python 2021-06-05 21:39:00 ``` Can you please post your code?

Pagination URLs are only useful past the first page. Try increase `pages` from 1.

```python posts = get_posts(username, cookies=cookie_file, pages=pages, extra_info=True, options={'allow_extra_requests': False, 'HQ_images': False}, page_limit=None, start_url=start_url, request_url_callback=handle_pagination_url) ``` Doesn't do anything on it's own, unless you consume this generator. Such as by wrapping...

So you're unable to paginate on zuck's page? Are you sure your cookies are working ok? What does ```python print(len(list(get_posts("zuck", cookies=cookie_file, options={'allow_extra_requests': False})))) ``` output for you? I get `100`....

I recently pushed a fix for that `reactors` issue (https://github.com/kevinzg/facebook-scraper/issues/692, https://github.com/kevinzg/facebook-scraper/commit/c41e14e1c8271ae82d2e981d64bf8cd21db08a85), try update to the latest master branch I don't think so, I think it's just that they updated their...

What error? reactor extraction for this post works fine for me