1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-25 04:02:32 +01:00

[deviantart] disable 'jwt' (#4652)

This commit is contained in:
Mike Fährmann 2023-10-12 21:37:10 +02:00
parent 2974b8e3c8
commit 992e86ec94
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
3 changed files with 5 additions and 3 deletions

View File

@ -1354,12 +1354,14 @@ extractor.deviantart.jwt
Type
``bool``
Default
``true``
``false``
Description
Update `JSON Web Tokens <https://jwt.io/>`__ (the ``token`` URL parameter)
of otherwise non-downloadable, low-resolution images
to be able to download them in full resolution.
Note: No longer functional as of 2023-10-11
extractor.deviantart.mature
---------------------------

View File

@ -85,7 +85,7 @@
"group": true,
"include": "gallery",
"journals": "html",
"jwt": true,
"jwt": false,
"mature": true,
"metadata": false,
"original": true,

View File

@ -42,7 +42,7 @@ class DeviantartExtractor(Extractor):
self.offset = 0
def _init(self):
self.jwt = self.config("jwt", True)
self.jwt = self.config("jwt", False)
self.flat = self.config("flat", True)
self.extra = self.config("extra", False)
self.quality = self.config("quality", "100")