10

新しいAmazon ECHOの「スキル」に取り組んでいます。このスキルを使用すると、ユーザーは Alexa に Enphase 太陽系の状態とパフォーマンスに関する情報を求めることができます。Alexa は、JSON ベースの Enphase API から抽出された結果で応答します。たとえば、ユーザーは次のように尋ねることができます。

 "Alexa.  Ask Enphase how much solar energy I have produced in the last week."
 ALEXA <"Your array has produced 152kWh in the last week.">

問題は、JavaScript でプログラミングしてから何年も経ち、AWS Lambda を使用するのはこれが初めてだということです。AWS Lambda 関数内で JSON クエリをサードパーティ サーバーに埋め込む方法に関する情報を見つけることに成功していません。これは、Lambda 関数のコードの関連セクションです。

 /**
  * Gets power from Enphase API and prepares speach
  */
 function GetPowerFromEnphase(intent, session, callback) {
      var Power = 0;
      var repromptText = null;
      var sessionAttributes = {};
      var shouldEndSession = false;
      var speechOutput = "";

      //////////////////////////////////////////////////////////////////////
      // Need code here for sending JSON query to Enphase server to get power
      // Request:
      // https://api.enphaseenergy.com/api/v2/systems/67/summary
      // key=5e01e16f7134519e70e02c80ef61b692&user_id=4d7a45774e6a41320a
      // Response:
      // HTTP/1.1 200 OK
      // Content-Type: application/json; charset=utf-8
      // Status: 200
      // {"system_id":67,"modules":35,"size_w":6270,"current_power":271,
      // "energy_today":30030,"energy_lifetime":59847036,
      // "summary_date":"2015-03 04","source":"microinverters",
      // "status":"normal","operational_at":1201362300,
      // "last_report_at":1425517225}
      //////////////////////////////////////////////////////////////////////

      speechOutput = "Your array is producing " + Power + " kW, goodbye";
      shouldEndSession = true;

      // Setting repromptText to null signifies that we do not want to reprompt the user.
      // If the user does not respond or says something that is not understood, the session
      // will end.
      callback(sessionAttributes,
         buildSpeechletResponse(intent.name, speechOutput, repromptText,
         shouldEndSession));
 }

いくつかのガイダンスをいただければ幸いです。誰かが私を正しい方向に向けることができたとしても。ありがとう!

4

1 に答える 1

8

Requestは、node.js で http リクエストを処理するための非常に人気のあるライブラリです。データを使用した POST の例を次に示します。

var request = require('request');

request({
  url: 'https://api.enphaseenergy.com/api/v2/systems/67/summary',
  method: 'POST',
  headers: {
    Accept: 'application/json',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    key: '5e01e16f7134519e70e02c80ef61b692',
    user_id: '4d7a45774e6a41320a'
  })
}, function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log('BODY: ', body);
    var jsonResponse = JSON.parse(body); // turn response into JSON

    // do stuff with the response and pass it to the callback...

    callback(sessionAttributes, 
        buildSpeechletResponse(intent.name, speechOutput, repromptText,
        shouldEndSession));
  }
});

ECHO/Alexa の例はありませんが、気象データを取得して Slack に送信するために Lambda を呼び出す例を次に示します。

于 2015-12-02T05:20:08.727 に答える