Ошибка при развертывании примера кода потока диалога - PullRequest
0 голосов
/ 23 мая 2018

Я пытаюсь развернуть пример бот-чата потока диалога с погодой,

Я развертываю его в соответствии с инструкцией, приведенной в руководстве по потоку диалога

для развертывания index.js. Я использую следующую команду

gcloud beta functions deploy helloHttp --stage-bucket weather-example --trigger-http

после развертывания файла я получаю следующую ошибку

ERROR: (gcloud.beta.functions.deploy) OperationError: code=3, message=Function load error: Node.js module defined by file index.js is expected to export function named helloHttp

Я не знаю, как ее решить, я новичок в облаке и потоке диалогов Google,

здесьмой файл index.js Я только что добавил свой ключ API

'use strict';

const http = require('http');

const host = 'api.worldweatheronline.com';
const wwoApiKey = 'MY wheather key';

exports.weatherWebhook = (req, res) => {
  // Get the city and date from the request
  let city = req.body.queryResult.parameters['geo-city']; // city is a required param

  // Get the date for the weather forecast (if present)
  let date = '';
  if (req.body.queryResult.parameters['date']) {
    date = req.body.queryResult.parameters['date'];
    console.log('Date: ' + date);
  }

  // Call the weather API
  callWeatherApi(city, date).then((output) => {
    res.json({ 'fulfillmentText': output }); // Return the results of the weather API to Dialogflow
  }).catch(() => {
    res.json({ 'fulfillmentText': `I don't know the weather but I hope it's good!` });
  });
};

function callWeatherApi (city, date) {
  return new Promise((resolve, reject) => {
    // Create the path for the HTTP request to get the weather
    let path = '/premium/v1/weather.ashx?format=json&num_of_days=1' +
      '&q=' + encodeURIComponent(city) + '&key=' + wwoApiKey + '&date=' + date;
    console.log('API Request: ' + host + path);

    // Make the HTTP request to get the weather
    http.get({host: host, path: path}, (res) => {
      let body = ''; // var to store the response chunks
      res.on('data', (d) => { body += d; }); // store each response chunk
      res.on('end', () => {
        // After all the data has been received parse the JSON for desired data
        let response = JSON.parse(body);
        let forecast = response['data']['weather'][0];
        let location = response['data']['request'][0];
        let conditions = response['data']['current_condition'][0];
        let currentConditions = conditions['weatherDesc'][0]['value'];

        // Create response
        let output = `Current conditions in the ${location['type']} 
        ${location['query']} are ${currentConditions} with a projected high of
        ${forecast['maxtempC']}°C or ${forecast['maxtempF']}°F and a low of 
        ${forecast['mintempC']}°C or ${forecast['mintempF']}°F on 
        ${forecast['date']}.`;

        // Resolve the promise with the output text
        console.log(output);
        resolve(output);
      });
      res.on('error', (error) => {
        console.log(`Error calling the weather API: ${error}`)
        reject();
      });
    });
  });
}

Подскажите, пожалуйста, что здесь не так?

Ответы [ 2 ]

0 голосов
/ 23 мая 2018

Здравствуйте, друзья! Я по ошибке использовал неправильный URL-адрес развертывания. Правильный URL-адрес выглядит следующим образом:

gcloud beta functions deploy helloHttp  --entry-point weatherWebhook  --stage-bucket weather-example --trigger-http
0 голосов
/ 23 мая 2018

В соответствии с вашим index.js файлом вы экспортируете weatherWebhook именованную функцию javascript, поэтому вы должны либо указать значение атрибута имени функции развертывания deploy команда бета-функций GCloud аналогична экспортированному имени метода, потому что по умолчанию при запуске Облачной функции Google она выполняет функцию JavaScript с тем же именем или, если не может найти функцию с тем же именем, она выполняет функцию с именем function.

Для этого ваша команда будет, попробуйте это

gcloud beta functions deploy weatherWebhook --stage-bucket weather-example --trigger-http

ИЛИ

вы можете использовать - entry-укажите аргумент, чтобы указать gcp, какая функция будет точкой входа для вашей облачной функции Google, если вам нужно другое имя для вашего развертывания.

gcloud beta functions deploy helloHttp  --entry-point weatherWebhook  --stage-bucket weather-example --trigger-http

Подробнее о команде облачной функции Google deploy нажмите здесь

...