Skip to main content

Troubleshooting

Authentication Errors

"Authentication failed" Error

Possible causes:

  • Invalid or expired API key
  • Incorrect email/password
  • Network connectivity issues

Solutions:

  1. Verify your API key is correct
  2. Generate a new API key from the Signaloid dashboard
  3. Check your internet connection

"API key cannot be empty" Error

This occurs when you try to authenticate with an empty key:

# ❌ Wrong
signaloid-cli auth login --api-key ""

# ✅ Correct
signaloid-cli auth login --api-key scce_1234567890abcdef

"Invalid email address" Error

Ensure your email is properly formatted:

# ❌ Wrong
signaloid-cli auth login --email "notanemail"

# ✅ Correct
signaloid-cli auth login --email "user@example.com"

Build Errors

Build Failed

If a build fails, check the build output for error messages:

signaloid-cli builds output --build-id <id>