Troubleshooting
Authentication Errors
"Authentication failed" Error
Possible causes:
- Invalid or expired API key
- Incorrect email/password
- Network connectivity issues
Solutions:
- Verify your API key is correct
- Generate a new API key from the Signaloid dashboard
- 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>