Incorrect use of Authorization header

This commit is contained in:
Yohann D'ANELLO 2020-10-03 15:40:33 +02:00
parent 3af19c0f27
commit 91aeb28c3a
1 changed files with 3 additions and 1 deletions

View File

@ -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]