更新:我的http請求端點發生錯誤。我沒有設置適當的認證選項,以便修復很多錯誤,可能是這個特定的錯誤。Node.js Lambda函數「響應無效」亞馬遜Alexa
我的問題是類似的一個位置:
但是解決這個問題並沒有解決我的問題。因此,我向Hana雲中的xsjs服務發起http請求調用。我收到'回覆無效'的錯誤訊息。我看不出爲什麼。這裏是我的功能:
// Create a web request and handle the response.
function httpGet(query, callback) {
console.log("/n QUERY: "+ query);
var host = 'datacloudyd070518trial.hanatrial.ondemand.com';
var path = '/LocationInformation/getLocationInfo.xsjs?location=';
var hostname = 'https://' + host + path + query;
var auth = 'user1:D1anafer';
var req = http.request({'hostname': hostname,
'auth': auth
}, (res) => {
var body = '';
res.on('data', (d) => {
body += JSON.stringify(d);
});
res.on('end', function() {
callback(body);
});
});
req.end();
req.on('error', (e) => {
console.error(e);
});
}
並調用它的功能:
'getNewsIntent': function() {
//self = this;
httpGet(location, function (response) {
// Parse the response into a JSON object ready to be formatted.
//var output = JSON.parse(response);
//output = output['change'];
var output = response;
var cardTitle = location;
var cardContent = output;
alexa.emit(':tellWithCard', output, cardTitle, cardContent);
});
},
謝謝 -Diana