1

我从博客中获得了以下代码,该代码获取了今天的比特币价格。我可以从 AWS Lex 控制台访问这个 Lambda 函数并测试机器人以获得今天的价格。

"""
Lexbot Lambda handler.
"""
from urllib.request import Request, urlopen
import json

def get_bitcoin_price(date):
    print('get_bitcoin_price, date = ' + str(date))
    request = Request('https://rest.coinapi.io/v1/ohlcv/BITSTAMP_SPOT_BTC_USD/latest?period_id=1DAY&limit=1&time_start={}'.format(date))
    request.add_header('X-CoinAPI-Key', 'E4107FA4-A508-448A-XXX')
    response = json.loads(urlopen(request).read())
    return response[0]['price_close']

def lambda_handler(event, context):
    print('received request: ' + str(event))
    date_input = event['currentIntent']['slots']['Date']
    btc_price = get_bitcoin_price(date_input)
    response = {
        "dialogAction": {
            "type": "Close",
            "fulfillmentState": "Fulfilled",
            "message": {
              "contentType": "SSML",
              "content": "Bitcoin's price was {price} dollars".format(price=btc_price)
            },
        }
    }
    print('result = ' + str(response))
    return response

但是当我从 AWS Lex 控制台测试该函数时,我收到以下错误:

 Response:
{
  "errorMessage": "'currentIntent'",
  "errorType": "KeyError",
  "stackTrace": [
    [
      "/var/task/lambda_function.py",
      18,
      "lambda_handler",
      "date_input = event['currentIntent']['slots']['Date']"
    ]
  ]
}

Request ID:
"2488187a-2b76-47ba-b884-b8aae7e7a25d"

Function Logs:
START RequestId: 2488187a-2b76-47ba-b884-b8aae7e7a25d Version: $LATEST
received request: {'Date': 'Feb 22'}
'currentIntent': KeyError
Traceback (most recent call last):
  File "/var/task/lambda_function.py", line 18, in lambda_handler
    date_input = event['currentIntent']['slots']['Date']
KeyError: 'currentIntent'

如何在 AWS Lambda 控制台中测试该函数?'lambda_handler' 函数,'event' 和 'context' 的格式是什么?另外,这里的“背景”是什么?

在我的情况下,我应该将什么作为“事件”和“上下文”传递?

4

1 回答 1

3

您的代码失败了,因为该event对象已被填充,{'Date': 'Feb 22'}但您的代码期望的远不止于此。因此,当您尝试通过访问来解析此 JSON 时,它会失败currentIntent

date_input = event['currentIntent']['slots']['Date']

从控制台进行测试时,您无法将任何内容传递context给您的 Lambda,因为它是由 AWS 自动填充的。此外,上下文仅在非常特定的场合使用,所以我暂时不用担心。

但是,您可以传递eventas 参数,并且有很多方法可以做到这一点。手动操作最简单的方法是转到 AWS 的 Lambda 控制台,点击测试,如果您还没有配置任何测试事件,则会弹出以下屏幕

在此处输入图像描述

现在,在下拉列表中,您可以选择您的事件,AWS 会为您填写,如下所示:

在此处输入图像描述

您现在可以按照您想要的方式自定义事件。

保存并单击测试后,该event对象将使用提供的 JSON 填充。

另一种选择是检查由事件源发布的示例事件,这样您就可以简单地获取任何您想要的 JSON 事件并相应地对其进行调整。

我已经为您抓取了 Lex 示例事件,如下所示:

{
  "messageVersion": "1.0",
  "invocationSource": "FulfillmentCodeHook or DialogCodeHook",
  "userId": "user-id specified in the POST request to Amazon Lex.",
  "sessionAttributes": { 
     "key1": "value1",
     "key2": "value2",
  },
  "bot": {
    "name": "bot-name",
    "alias": "bot-alias",
    "version": "bot-version"
  },
  "outputDialogMode": "Text or Voice, based on ContentType request header in runtime API request",
  "currentIntent": {
    "name": "intent-name",
    "slots": {
      "slot-name": "value",
      "slot-name": "value",
      "slot-name": "value"
    },
    "confirmationStatus": "None, Confirmed, or Denied
      (intent confirmation, if configured)"
  }
}

将其用作您的事件,您将能够相应地对其进行测试。

于 2019-02-26T08:01:01.900 回答