[deviantart] disable 'jwt' (#4652)
This commit is contained in:
@@ -1354,12 +1354,14 @@ extractor.deviantart.jwt
|
|||||||
Type
|
Type
|
||||||
``bool``
|
``bool``
|
||||||
Default
|
Default
|
||||||
``true``
|
``false``
|
||||||
Description
|
Description
|
||||||
Update `JSON Web Tokens <https://jwt.io/>`__ (the ``token`` URL parameter)
|
Update `JSON Web Tokens <https://jwt.io/>`__ (the ``token`` URL parameter)
|
||||||
of otherwise non-downloadable, low-resolution images
|
of otherwise non-downloadable, low-resolution images
|
||||||
to be able to download them in full resolution.
|
to be able to download them in full resolution.
|
||||||
|
|
||||||
|
Note: No longer functional as of 2023-10-11
|
||||||
|
|
||||||
|
|
||||||
extractor.deviantart.mature
|
extractor.deviantart.mature
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
"group": true,
|
"group": true,
|
||||||
"include": "gallery",
|
"include": "gallery",
|
||||||
"journals": "html",
|
"journals": "html",
|
||||||
"jwt": true,
|
"jwt": false,
|
||||||
"mature": true,
|
"mature": true,
|
||||||
"metadata": false,
|
"metadata": false,
|
||||||
"original": true,
|
"original": true,
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ class DeviantartExtractor(Extractor):
|
|||||||
self.offset = 0
|
self.offset = 0
|
||||||
|
|
||||||
def _init(self):
|
def _init(self):
|
||||||
self.jwt = self.config("jwt", True)
|
self.jwt = self.config("jwt", False)
|
||||||
self.flat = self.config("flat", True)
|
self.flat = self.config("flat", True)
|
||||||
self.extra = self.config("extra", False)
|
self.extra = self.config("extra", False)
|
||||||
self.quality = self.config("quality", "100")
|
self.quality = self.config("quality", "100")
|
||||||
|
|||||||
Reference in New Issue
Block a user