[deviantart] fix watching module ID extraction (#5696)
This commit is contained in:
@@ -1730,15 +1730,21 @@ class DeviantartEclipseAPI():
|
|||||||
url = "{}/{}/about".format(self.extractor.root, user)
|
url = "{}/{}/about".format(self.extractor.root, user)
|
||||||
page = self.request(url).text
|
page = self.request(url).text
|
||||||
|
|
||||||
gruserid, pos = text.extract(page, ' data-userid="', '"')
|
module_id = text.extr(page, ' data-moduleid="', '"')
|
||||||
|
gruser_id = text.extr(page, ' data-userid="', '"')
|
||||||
|
|
||||||
pos = page.find('\\"type\\":\\"watching\\"', pos)
|
if not module_id:
|
||||||
if pos < 0:
|
pos = page.find('\\"name\\":\\"watching\\"')
|
||||||
raise exception.NotFoundError("module")
|
if pos < 0:
|
||||||
moduleid = text.rextract(page, '\\"id\\":', ',', pos)[0].strip('" ')
|
raise exception.NotFoundError("'watching' module ID")
|
||||||
|
module_id = text.rextract(
|
||||||
|
page, '\\"id\\":', ',', pos)[0].strip('" ')
|
||||||
|
|
||||||
|
print(module_id)
|
||||||
|
exit()
|
||||||
|
|
||||||
self._fetch_csrf_token(page)
|
self._fetch_csrf_token(page)
|
||||||
return gruserid, moduleid
|
return gruser_id, module_id
|
||||||
|
|
||||||
def _fetch_csrf_token(self, page=None):
|
def _fetch_csrf_token(self, page=None):
|
||||||
if page is None:
|
if page is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user