curiousier-george

Results 30 comments of curiousier-george

Thanks. Now it seems that ```python posts = get_posts(username, cookies=cookie_file, extra_info=True, options={'page_limit': None, 'allow_extra_requests': False, 'HQ_images': False}) ``` never returns non-0 values for likes/reaction_count. Does this mean Facebook is changing...

Yes, I do, too - on all usernames now. Until the day I posted the first report in this thread, it worked for all usernames on almost all posts, and...

Yes, thanks, this works great. It doesn't seem to set `reaction_count`. I saw a related comment of yours recently, but I didn't completely understand it. When does `reaction_count` get set?...

Okay. All of the output I posted is from Pages. How does ```python posts = get_posts(username, cookies=cookie_file, pages=3, extra_info=True, options={'posts_per_page': 4, 'allow_extra_requests': False, 'HQ_images': False}) print('Actual number of posts =...

Apparently all user home pages. (Is that the correct Facebook lingo?) The output I posted is from the program snippet I used to try to figure out what was actually...

Oh, I see. Thanks, I didn't know that a Facebook Page wasn't a user's page. (Sorry.) Do I understand correctly then that for users' pages (e.g., "zuck") that the parameter...

Just to make sure, is it true that there is 1 request for each `page` asked for in the `get_posts()` call, and also 1 request for each post that's actually...

Thanks, neon-ninja. This helps a lot - I think I understand now. > > also 1 request for each post that's actually consumed from the generator returned by get_posts() >...

Thanks, I think I understand how that works now. I just did a couple experiments using `start_url` and `request_url_callback` as discussed in other Issue threads, and I believe I'm seeing...

Hmm. I was using: ```python def handle_pagination_url(url): global start_url start_url = url print('handle_pagination_url(): start_url =', start_url) pages = 1 start_url = None posts = get_posts(username, cookies=cookie_file, pages=pages, extra_info=True, options={'allow_extra_requests': False,...