处理请求错误

Routes API 会返回错误消息作为 对方法调用的响应。例如,如果您在 请求,该方法会返回:

{
  "error": {
    "code": 403,
    "message": "The request is missing a valid API key.",
    "status": "PERMISSION_DENIED"
  }
}

如果您省略必需的 body 参数(例如 origin),该方法 返回:

{
  "error": {
    "code": 400,
    "message": "Origin and destination must be set.",
    "status": "INVALID_ARGUMENT"
  }
}

如需详细了解错误和错误处理,请参阅 错误