instantly-common-errors

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Instantly 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 key
Cause: API key is missing, expired, or invalid.
Solution:
bash
undefined
错误信息:
Authentication error: Invalid API key
原因: API密钥缺失、过期或无效。
解决方案:
bash
undefined

Verify 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
instantly-rate-limits
skill.

错误信息:
Rate limit exceeded. Please retry after X seconds.
原因: 短时间内发送请求过多。
解决方案: 实现指数退避机制。请查看
instantly-rate-limits
技能。

Network Timeout

网络超时

Error Message:
Request timeout after 30000ms
Cause: 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 pipefail
bash
set -euo pipefail

Check Instantly status

检查Instantly状态

Verify API connectivity

验证API连通性

Check local configuration

检查本地配置

env | grep INSTANTLY
undefined
env | grep INSTANTLY
undefined

Escalation Path

升级处理流程

  1. Collect evidence with
    instantly-debug-bundle
  2. Check Instantly status page
  3. Contact support with request ID
  1. 使用
    instantly-debug-bundle
    收集证据
  2. 查看Instantly状态页面
  3. 携带请求ID联系支持团队

Resources

参考资源

Next Steps

后续步骤

For comprehensive debugging, see
instantly-debug-bundle
.
如需全面调试,请查看
instantly-debug-bundle