instantly-common-errors
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseInstantly Common Errors
Instantly常见错误
Overview
概述
Quick reference for the top 10 most common Instantly errors and their solutions.
十大最常见Instantly错误及其解决方案的快速参考。
Prerequisites
前提条件
- Instantly SDK installed
- API credentials configured
- Access to error logs
- 已安装Instantly SDK
- 已配置API凭据
- 可访问错误日志
Instructions
操作步骤
Step 1: Identify the Error
步骤1:识别错误
Check error message and code in your logs or console.
在日志或控制台中查看错误信息与错误代码。
Step 2: Find Matching Error Below
步骤2:匹配下方错误案例
Match your error to one of the documented cases.
将你的错误与文档中记录的案例进行匹配。
Step 3: Apply Solution
步骤3:应用解决方案
Follow the solution steps for your specific error.
按照对应错误的解决方案步骤操作。
Output
输出结果
- Identified error cause
- Applied fix
- Verified resolution
- 已识别的错误原因
- 已应用的修复方案
- 已验证的问题解决状态
Error Handling
错误处理
Authentication Failed
认证失败
Error Message:
Authentication error: Invalid API keyCause: API key is missing, expired, or invalid.
Solution:
bash
undefined错误信息:
Authentication error: Invalid API key原因: API密钥缺失、过期或无效。
解决方案:
bash
undefinedVerify API key is set
验证API密钥是否已设置
echo $INSTANTLY_API_KEY
---echo $INSTANTLY_API_KEY
---Rate Limit Exceeded
超出速率限制
Error Message:
Rate limit exceeded. Please retry after X seconds.Cause: Too many requests in a short period.
Solution:
Implement exponential backoff. See skill.
instantly-rate-limits错误信息:
Rate limit exceeded. Please retry after X seconds.原因: 短时间内发送请求过多。
解决方案:
实现指数退避机制。请查看技能。
instantly-rate-limitsNetwork Timeout
网络超时
Error Message:
Request timeout after 30000msCause: Network connectivity or server latency issues.
Solution:
typescript
// Increase timeout
const client = new Client({ timeout: 60000 }); # 60000: 1 minute in ms错误信息:
Request timeout after 30000ms原因: 网络连接问题或服务器延迟。
解决方案:
typescript
// 增加超时时间
const client = new Client({ timeout: 60000 }); # 60000:毫秒,即1分钟Examples
示例
Quick Diagnostic Commands
快速诊断命令
bash
set -euo pipefailbash
set -euo pipefailCheck Instantly status
检查Instantly状态
curl -s https://status.instantly.com
curl -s https://status.instantly.com
Verify API connectivity
验证API连通性
curl -I https://api.instantly.com
curl -I https://api.instantly.com
Check local configuration
检查本地配置
env | grep INSTANTLY
undefinedenv | grep INSTANTLY
undefinedEscalation Path
升级处理流程
- Collect evidence with
instantly-debug-bundle - Check Instantly status page
- Contact support with request ID
- 使用收集证据
instantly-debug-bundle - 查看Instantly状态页面
- 携带请求ID联系支持团队
Resources
参考资源
Next Steps
后续步骤
For comprehensive debugging, see .
instantly-debug-bundle如需全面调试,请查看。
instantly-debug-bundle