changed image version; small typos
All checks were successful
Build Docker Image / build (push) Successful in 2m31s

This commit is contained in:
Tudor Sitaru
2025-10-23 17:00:25 +01:00
parent e8df11bc16
commit acfb22cbea
6 changed files with 149 additions and 116 deletions

View File

@@ -37,14 +37,18 @@ async def test_login():
print(f"User: {auth_manager.user_name}")
print(f"Provider: {auth_manager.provider_name}")
print(f"User ID: {auth_manager.user_id}")
print(f"API Key: {auth_manager.api_key[:20]}..." if auth_manager.api_key else "No API key found")
print(
f"API Key: {auth_manager.api_key[:20]}..."
if auth_manager.api_key
else "No API key found"
)
# Test getting auth headers
headers = auth_manager.get_auth_headers()
print(f"Auth headers: {list(headers.keys())}")
if 'x-api-key' in headers:
if "x-api-key" in headers:
print(f"✅ x-api-key header present: {headers['x-api-key'][:20]}...")
if 'x-api-product' in headers:
if "x-api-product" in headers:
print(f"✅ x-api-product header: {headers['x-api-product']}")
# Test if authenticated