AWS Lambda中的HTTP GET仅运行一次

时间:2017-03-29 05:50:01

标签: javascript http get aws-lambda alexa-skills-kit

我正在尝试使用亚马逊用户个人资料API查找用户个人资料信息,但我的GET请求只能使用一次。第一次,返回配置文件信息没有问题,但是对lambda函数的所有后续调用都会导致GET返回400错误请求。这是我目前的代码:

exports.handler = (event, context) => {
const alexa = Alexa.handler(event, context);
alexa.appId = APP_ID;
// console.log(event);
if (event.session.user.accessToken === undefined) {
    alexa.emit(':tellWithLinkAccountCard',
                  'To start using the app, please use the Alexa companion app to authenticate on Amazon');
} else {
    amazonProfileURL += event.session.user.accessToken;
    console.log(amazonProfileURL);
    http.get(amazonProfileURL, (res) => {
      const statusCode = res.statusCode;
      const contentType = res.headers['content-type'];

      let error;
      if (statusCode !== 200) {
        error = new Error(`Request Failed.\n` +
                          `Status Code: ${statusCode}`);
      } else if (!/^application\/json/.test(contentType)) {
        error = new Error(`Invalid content-type.\n` +
                          `Expected application/json but received ${contentType}`);
      }
      if (error) {
        console.log(error.message);
        // consume response data to free up memory
        res.resume();
        return;
      }

      res.setEncoding('utf8');
      let rawData = '';
      res.on('data', (chunk) => rawData += chunk);
      res.on('end', () => {
        try {
            let parsedData = JSON.parse(rawData);
            user_name = parsedData.name;
            user_email = parsedData.email;
            console.log(user_name);
            console.log(user_email);
            alexa.registerHandlers(handlers);
            alexa.execute();
        } catch (e) {
          console.log(e.message);
        }
      });
    }).on('error', (e) => {
      console.log(`Got error: ${e.message}`);
    });

第一次调用该函数时,代码成功运行alexa.execute()函数,但在所有后续调用中,以下内容将打印到控制台:

START RequestId: 89a3a696-1442-11e7-9c15-6de8cce4b94d Version: $LATEST
2017-03-29T05:42:46.772Z    89a3a696-1442-11e7-9c15-6de8cce4b94d    https://api.amazon.com/user/profile?access_token=<long user access token>
2017-03-29T05:42:46.888Z    89a3a696-1442-11e7-9c15-6de8cce4b94d    Request Failed.
Status Code: 400

我是JavaScript和AWS Lambda的新手,所以感谢任何帮助!

1 个答案:

答案 0 :(得分:2)

我解决了这个问题。事实证明这是一个AWS Lambda问题(功能?)而不是HTTP GET问题。我的amazonProfileURL字符串在对lambda函数的调用之间持续存在,因此它只是第一次调用的有效URL。解决方案是将该行更改为requestURL = amazonProfileURL + event.session.user.accessToken,以便amazonProfileURL不会被覆盖。