yangsu10yen
yangsu10yen
I came across same situation. I modifed source code below, then solved. I suppose that Facebook's site codes changed. Hope it helps. ``` class SearchPageParser(PageParser): cursor_regex = re.compile(r'href[:=]"[^"]+(/search/[^"]+)"') cursor_regex_2 =...
@KKHYA Sorry for the delay in replying. I came across same situation. However, I did not get 9 posts, but no posts. After investigating the cause, it seems that the...
Hi. I encountered the same problem and after analyzing the cause, I was able to retrieve the data by modifying the following two points. 1. Change the URL to be...
Hi, I have encountered the same problem and am investigating a solution. In the process, when creating the Playwright instance, I specified the 'executable_path' as the same browser that generated...
@jpratt9 The `cookie` object comes from below code. ```python import os import browsercookie COOKIE = os.path.expanduser('~/.config/google-chrome/Default/Cookies') cookie_jar = browsercookie.chrome([COOKIE]) cookies = [ { 'name': c.name, 'domain': c.domain, 'path': c.path, 'value':...
@jpratt9 The `executable_path` is passed as an argument to `self.playwright.chromium.launch()` of the method `create_sessions()` in this library (see [my comment](https://github.com/davidteather/TikTok-Api/issues/1090#issuecomment-1915841853)) In the playwright used in this library, if a valid...