fireflies-common-errors

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Fireflies.ai Common Errors

Fireflies.ai 常见错误

Overview

概述

Quick reference for the top 10 most common Fireflies.ai errors and their solutions.
Fireflies.ai最常见的10种错误及其解决方案的快速参考。

Prerequisites

前置条件

  • Fireflies.ai SDK installed
  • API credentials configured
  • Access to error logs
  • 已安装Fireflies.ai 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

Verify API key is set

echo $FIREFLIES_API_KEY

---
echo $FIREFLIES_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
fireflies-rate-limits
skill.

错误消息:
Rate limit exceeded. Please retry after X seconds.
原因: 短时间内请求数量过多。
解决方案: 实现指数退避策略。参考
fireflies-rate-limits
skill。

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 });
错误消息:
Request timeout after 30000ms
原因: 网络连接或服务器延迟问题。
解决方案:
typescript
// Increase timeout
const client = new Client({ timeout: 60000 });

Examples

示例

Quick Diagnostic Commands

快速诊断命令

bash
undefined
bash
undefined

Check Fireflies.ai status

Check Fireflies.ai status

Verify API connectivity

Verify API connectivity

Check local configuration

Check local configuration

env | grep FIREFLIES
undefined
env | grep FIREFLIES
undefined

Escalation Path

升级上报路径

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

Resources

资源

Next Steps

后续步骤

For comprehensive debugging, see
fireflies-debug-bundle
.
如需全面调试,请参考
fireflies-debug-bundle