如何在 Dialogflow 聊天机器人中获取用户的当前位置?
How to get the current location of a user in Dialogflow chatbot?
我正在尝试获取 Dialogflow 中的用户位置,但到目前为止我无法获取它。
我找到了显示如何使用 Google 帮助在 Dialogflow 中获取位置的信息,例如 article。问题是我只想用聊天机器人来做,然后在那里得到回应。我也尝试了下面的代码,但仍然无法正常工作:
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
const {Permission} = require('actions-on-google');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function requestPermission(agent) {
agent.requestSource = agent.ACTIONS_ON_GOOGLE;
let conv = agent.conv();
console.log('conv '+conv);
conv.ask(new Permission({
context: 'to locate you',
permissions: 'DEVICE_PRECISE_LOCATION',
}));
agent.add(conv); // Please add this
}
function welcome(agent) {
agent.add(`Welcome to my agent!`);
}
function fallback(agent) {
agent.add(`I didn't understand`);
agent.add(`I'm sorry, can you try again?`);
}
let intentMap = new Map();
intentMap.set('Default Welcome Intent', welcome);
intentMap.set('Default Fallback Intent', fallback);
intentMap.set('request_permission', requestPermission);
agent.handleRequest(intentMap);
});
我添加了一个意图调用 "request_permission"。我将不胜感激任何帮助或建议。
Dialogflow 中没有获取位置的通用解决方案。并非所有与 Dialogflow 配合使用的系统都有自动传输位置的方法,其他系统通过消息使用不同的方式。
Google 上的操作解决方案仅适用于 Google 助手。
我正在尝试获取 Dialogflow 中的用户位置,但到目前为止我无法获取它。
我找到了显示如何使用 Google 帮助在 Dialogflow 中获取位置的信息,例如 article。问题是我只想用聊天机器人来做,然后在那里得到回应。我也尝试了下面的代码,但仍然无法正常工作:
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
const {Permission} = require('actions-on-google');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function requestPermission(agent) {
agent.requestSource = agent.ACTIONS_ON_GOOGLE;
let conv = agent.conv();
console.log('conv '+conv);
conv.ask(new Permission({
context: 'to locate you',
permissions: 'DEVICE_PRECISE_LOCATION',
}));
agent.add(conv); // Please add this
}
function welcome(agent) {
agent.add(`Welcome to my agent!`);
}
function fallback(agent) {
agent.add(`I didn't understand`);
agent.add(`I'm sorry, can you try again?`);
}
let intentMap = new Map();
intentMap.set('Default Welcome Intent', welcome);
intentMap.set('Default Fallback Intent', fallback);
intentMap.set('request_permission', requestPermission);
agent.handleRequest(intentMap);
});
我添加了一个意图调用 "request_permission"。我将不胜感激任何帮助或建议。
Dialogflow 中没有获取位置的通用解决方案。并非所有与 Dialogflow 配合使用的系统都有自动传输位置的方法,其他系统通过消息使用不同的方式。
Google 上的操作解决方案仅适用于 Google 助手。