1

我正在尝试通过 git bash 将 botium 连接到我的 lex 机器人。我的 botium.json 看起来像这样

{
  "botium": {
    "Capabilities": {
      "PROJECTNAME": "My Bot Test",
      "CONTAINERMODE": "lex",
      "LEX_REGION": "us-east-1",
      "LEX_ACCESS_KEY_ID": "mykeyID",
      "LEX_SECRET_ACCESS_KEY": "mysecretaccesskey",
      "LEX_PROJECT_NAME": "myBotName",
      "LEX_PROJECT_ALIAS": "myBotNameAlias"
    },
    "Sources": {},
    "Envs": {}
  }
}

我尝试运行以下命令 botium-cli nlpextract --config botium.json --convos /output --verbose

它给了我这个错误

2020-03-11T00:03:23.566Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:23.567Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:23.568Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:25.158Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
Failed to extract utterances: connect ETIMEDOUT 52.5.205.58:443

这似乎不是正确的 IP,但我不知道如何设置连接。当我运行命令时,我已经通过 git bash 登录到我的 AWS CLI 帐户,所以我认为它应该立即连接。但是连接总是超时。找不到任何可以帮助我的文档。

4

1 回答 1

1

这个IP属于亚马逊。Lex 客户端连接到的主机名不受配置影响,但它们是自动计算的(在您的情况下,使用端点https://runtime.lex.us-east-1.amazonaws.com - https//{服务}.{region}.amazonaws.com)。

看起来访问被某种方式阻止了——本地防火墙、公司防火墙、代理等等。

于 2020-03-11T13:01:32.163 回答