changed image version; small typos
All checks were successful
Build Docker Image / build (push) Successful in 2m31s
All checks were successful
Build Docker Image / build (push) Successful in 2m31s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user