diff --git a/reflect_client/Client.py b/reflect_client/Client.py index 1dc9b84..58c0b03 100644 --- a/reflect_client/Client.py +++ b/reflect_client/Client.py @@ -66,9 +66,9 @@ class Client: "Content-Type": "application/json" } - # Append Authentication header if API key is provided + # Append Authorization header if API key is provided if (self._key): - headers["Authentication"] = f"Bearer {self._key}" + headers["Authorization"] = f"Bearer {self._key}" return headers