Explorar o código

fix: 'dict' object issue

Timothy J. Baek hai 1 ano
pai
achega
366679ff7c
Modificáronse 1 ficheiros con 1 adicións e 4 borrados
  1. 1 4
      backend/utils/utils.py

+ 1 - 4
backend/utils/utils.py

@@ -61,10 +61,7 @@ def extract_token_from_auth_header(auth_header: str):
 def get_http_authorization_cred(auth_header: str):
     try:
         scheme, credentials = auth_header.split(" ")
-        return {
-            "scheme": scheme,
-            "credentials": credentials,
-        }
+        return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials)
     except:
         raise ValueError(ERROR_MESSAGES.INVALID_TOKEN)