{
  "id": "go/grpc-status-details-missing",
  "signature": "rpc error: code = Unknown desc = malformed status: no status details",
  "signature_zh": "rpc 错误：代码 = Unknown 描述 = 状态格式错误：无状态详情",
  "regex": "rpc\\ error:\\ code\\ =\\ Unknown\\ desc\\ =\\ malformed\\ status:\\ no\\ status\\ details",
  "domain": "go",
  "category": "data_error",
  "subcategory": null,
  "root_cause": "Server returns a status with no details, but client expects google.rpc.Status details, causing proto unmarshal failure.",
  "root_cause_type": "generic",
  "root_cause_zh": "服务器返回的状态没有详情，但客户端期望 google.rpc.Status 详情，导致 proto 反序列化失败。",
  "versions": [
    {
      "version": "1.0",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "",
      "why_fails": "Server logs show no error because the status is intentionally empty; issue is in client-side parsing.",
      "fail_rate": 0.7,
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "why_fails": "Credentials are not the issue; the problem is in the status detail parsing logic.",
      "fail_rate": 0.9,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "",
      "success_rate": 0.9,
      "how": "if s, ok := status.FromError(err); ok { for _, d := range s.Details() { /* handle */ } }",
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "success_rate": 0.8,
      "how": "st := status.New(codes.Unknown, \"error\"); st, _ = st.WithDetails(&errdetails.ErrorInfo{}); return st.Err()",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.85,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-01-15",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}