如何使用Diagflow识别唯一用户

时间:2018-06-09 14:33:14

标签: actions-on-google dialogflow

我正在尝试创建一个助手应用程序并使用firebase的云端防火服务将响应发送回我的应用程序,使用webhook作为履行。我使用了' session'请求JSON中的参数根据此documentation并发送fulfilmentText作为对用户的响应。但每当用户启动应用程序时,都会创建一个我不想要的新会话。我只想要,我的数据库中的每个用户只需要一个条目,以便如何使用对话框流程实现这一目标。

在Alexa Skill中,我们将deviceId作为参数,通过该参数我们可以唯一地识别用户而不管会话ID,但是对话流请求JSON中是否有任何参数。如果没有,那么如何在没有它的情况下完成这项任务。

我从Dialogflow获取的请求JSON中有一个userID,因此我可以使用userId,或者我应该使用userStorage,前提是请求JSON中没有userStorage参数。

request.body.originalDetectIntentRequest { source: 'google',   version: '2',   payload:     { surface: { capabilities: [Object] },
     inputs: [ [Object] ],
     user: 
      { locale: 'en-US',
        userId: 'ABwppHG5OfRf2qquWWjI-Uy-MwfiE1DQlCCeoDrGhG8b0fHVg7GsPmaKehtxAcP-_ycf_9IQVtUISgfKhZzawL7spA' },
     conversation: 
      { conversationId: '1528790005269',
        type: 'ACTIVE',
        conversationToken: '["generate-number-followup"]' },
     availableSurfaces: [ [Object] ] } }

编辑:谢谢@Prisoner的答案,但我无法发送响应中生成的随机ID并在有效负载中设置。下面是我生成uuid并将其存储在firestore中的代码。我在下面的代码中做错了,因为为返回用户生成了新的uuid,因此响应显示为在数据库中找不到文档。我想我不是在适当地发送uuid。请帮忙。

exports.webhook = functions.https.onRequest((request, response) => {


    console.log("request.body.queryResult.parameters", request.body.queryResult.parameters);
    console.log("request.body.originalDetectIntentRequest.payload", request.body.originalDetectIntentRequest.payload);

    let userStorage = request.body.originalDetectIntentRequest.payload.user.userStorage || {};
    let userId;
    console.log("userStorage", userStorage);

    if (userId in userStorage) {
      userId = userStorage.userId;
    } else {
      var uuid = require('uuid/v4');
      userId = uuid();
      userStorage.userId = userId
    }

    console.log("userID", userId);

    switch (request.body.queryResult.action) {
      case 'FeedbackAction': {

            let params = request.body.queryResult.parameters;

            firestore.collection('users').doc(userId).set(params)
              .then(() => {

              response.send({
                'fulfillmentText' : `Thank You for visiting our ${params.resortLocation} hotel branch and giving us ${params.rating} and your comment as ${params.comments}.` ,
                'payload': {
                  'google': {
                    'userStorage': userStorage
                  }
                }

                });
                return console.log("resort location", params.resortLocation);
            })
            .catch((e => {

              console.log('error: ', e);

              response.send({
             'fulfillmentText' : `something went wrong when writing to database`,
             'payload': {
               'google': {
                 'userStorage': userStorage
               }
             }
                });
            }))

        break;
      }
        case 'countFeedbacks':{

          var docRef = firestore.collection('users').doc(userId);

          docRef.get().then(doc => {
              if (doc.exists) {
                  // console.log("Document data:", doc.data());
                  var dat = doc.data();
                  response.send({
                    'fulfillmentText' : `You have given feedback for ${dat.resortLocation} and rating as ${dat.rating}`,
                    'payload': {
                      'google': {
                        'userStorage': userStorage
                      }
                    }
                  });

              } else {
                  // doc.data() will be undefined in this case
                  console.log("No such document!");

                  response.send({
                    'fulfillmentText' : `No feedback found in our database`,
                    'payload': {
                      'google': {
                        'userStorage': userStorage
                      }
                    }
                  });

              }
              return console.log("userStorage_then_wala", userStorage);
          }).catch((e => {
              console.log("Error getting document:", error);
              response.send({
                'fulfillmentText' : `something went wrong while reading from the database`,
                'payload': {
                  'google': {
                    'userStorage': userStorage
                  }
                }
              })
          }));

          break;
        }

1 个答案:

答案 0 :(得分:4)

根据您的确切需要,您有几种选择。

简单:userStorage

Google提供了一个userStorage对象,该对象会在对话when it can identify a user中保留。这使您可以在需要跟踪用户返回时存储自己的标识符。

最简单的方法是在调用webhook时检查userStorage对象的标识符。如果它不存在,请使用类似v4 UUID的内容创建一个并将其保存在userStorage对象中。

如果您使用的是动作在谷歌库,代码可能如下所示:

let userId;
// if a value for userID exists un user storage, it's a returning user so we can
// just read the value and use it. If a value for userId does not exist in user storage,
// it's a new user, so we need to generate a new ID and save it in user storage.
if (userId in conv.user.storage) {
  userId = conv.user.storage.userId;
} else {
  // Uses the "uuid" package. You can get this with "npm install --save uuid"
  var uuid = require('uuid/v4');
  userId = uuid();
  conv.user.storage.userId = userId
}

如果您正在使用对话框流程库,则可以使用上述内容,但首先需要此行:

let conv = agent.conv();

如果您正在使用multivocal库,它会为您完成上述所有操作,并将在路径User/Id下的环境中提供UserID。

如果您正在直接处理JSON,并且您正在使用Dialogflow v2协议,则可以通过检查JSON请求对象中的originalDetectIntentRequest.payload.user.userStorage来获取userStorage对象。您将在JSON响应中设置payload.google.userStorage对象。代码与上面的代码类似,可能如下所示:

let userStorage = body.originalDetectIntentRequest.payload.user.userStorage || {};
let userId;
// if a value for userID exists un user storage, it's a returning user so we can
// just read the value and use it. If a value for userId does not exist in user storage,
// it's a new user, so we need to generate a new ID and save it in user storage.
if (userId in userStorage) {
  userId = userStorage.userId;
} else {
  // Uses the "uuid" package. You can get this with "npm install --save uuid"
  var uuid = require('uuid/v4');
  userId = uuid();
  userStorage.userId = userId
}

// ... Do stuff with the userID

// Make sure you include the userStorage as part of the response
var responseBody = {
  payload: {
    google: {
      userStorage: JSON.stringify(userStorage),
      // ...
    }
  }
};

注意代码的第一行 - 如果userStorage不存在,请使用空对象。在您发送包含第一次存储内容的响应之前,它将不存在,这将发生在此代码的最后几行。

高级:帐户关联

您可以向sign in to your Action using Google Sign In用户请求。对于最简单的情况,这可以仅使用语音来完成,并且只会在第一次中断流程。

在此之后,您的操作会获得一个JWT,其中包含您可以用作其标识符的Google ID。

如果您使用的是动作在谷歌库,您可以通过以下行获取解码后的JWT中的ID:

const userId = conv.user.profile.payload.sub;

在多本地库中,解码的JWT中的ID在路径User/Profile/sub

下的环境中可用

已弃用:匿名用户ID

您将在StackOverflow上看到一些引用匿名用户ID的答案。 Google已弃用此标识符,该标识符并不总是验证返回用户的可靠方式,并将在2019年6月1日删除它。

此代码目前仍在发送,但将于2019年6月1日起删除。