Nick Young
Nick Young
https://m.facebook.com/trumilou/reviews?locale=en_US doesn't work in my browser either, this page must have reviews disabled
https://m.facebook.com/pg/SkyTowerAKL/reviews/ works fine
It's already supported, try the `get_shop` function. See https://github.com/kevinzg/facebook-scraper/issues/380 for sample usage
No, a shop is similar to this URL: https://www.facebook.com/SwaziNZ/shop/?_rdr
Of course, go ahead, pull requests are welcome 👍
@okandas still hasn't submitted their PR
This looks to be caused by malformed HTML served by FB, resulting in lxml not putting the footer element in the article element. As a workaround, you can re-fetch these...
What username are you using? I tried with dudukovich, and still get the error. ```python set_cookies("cookies.txt") posts = get_posts("dudukovich", pages=1, options={'allow_extra_requests': False}) for post in posts: if not post["likes"]: pprint(post)...
I see - try https://github.com/kevinzg/facebook-scraper/commit/c4ffccc681b61372f7bf2d85833ac1873c98ed80 With this commit and this test code: ```python set_cookies("cookies.txt") posts = get_posts("dudukovich", pages=1, options={'allow_extra_requests': False}) for post in posts: print(post["post_id"], post["likes"], post["comments"]) ``` I get:...
https://github.com/kevinzg/facebook-scraper/commit/40c1e8a6f81d7a89256abaa0811b301875e1a6d8 should set reaction_count. Usually this would only get set if you set `options: "reactions"`, but this would involve an extra request (to something like https://m.facebook.com/ufi/reaction/profile/browser/?ft_ent_identifier=10229047171274156) I think you're thinking...