Incorrect use of Authorization header
This commit is contained in:
parent
3af19c0f27
commit
91aeb28c3a
|
@ -93,7 +93,9 @@ class MediaAdminForm(ModelForm):
|
|||
|
||||
def download_data_isbndb(self, isbn):
|
||||
api_url = "https://api2.isbndb.com/book/" + str(isbn) + "?Authorization=" + os.getenv("ISBNDB_KEY")
|
||||
with urllib.request.urlopen(api_url) as url:
|
||||
req = urllib.request.Request(api_url)
|
||||
req.add_header("Authorization", os.getenv("ISBNDB_KEY"))
|
||||
with urllib.request.urlopen(req) as url:
|
||||
data = json.loads(url.read().decode())
|
||||
self.cleaned_data["title"] = data["title_long"]
|
||||
self.cleaned_data["published_date"] = data["date_published"][:10]
|
||||
|
|
Loading…
Reference in New Issue