mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
[sankaku] update/fix API headers
'Referer' and 'Origin' were both empty
This commit is contained in:
parent
fb3f0453db
commit
a60db454af
@ -24,6 +24,7 @@ class SankakuExtractor(BooruExtractor):
|
||||
"""Base class for sankaku channel extractors"""
|
||||
basecategory = "booru"
|
||||
category = "sankaku"
|
||||
root = "https://sankaku.app"
|
||||
filename_fmt = "{category}_{id}_{md5}.{extension}"
|
||||
cookies_domain = None
|
||||
_warning = True
|
||||
@ -258,9 +259,10 @@ class SankakuAPI():
|
||||
def __init__(self, extractor):
|
||||
self.extractor = extractor
|
||||
self.headers = {
|
||||
"Accept" : "application/vnd.sankaku.api+json;v=2",
|
||||
"Origin" : extractor.root,
|
||||
"Referer": extractor.root + "/",
|
||||
"Accept" : "application/vnd.sankaku.api+json;v=2",
|
||||
"Referer" : extractor.root + "/",
|
||||
"Platform": "web-app",
|
||||
"Origin" : extractor.root,
|
||||
}
|
||||
|
||||
self.username, self.password = self.extractor._get_auth_info()
|
||||
|
Loading…
Reference in New Issue
Block a user