我有一个应用程序(使用Xamarin开发),当用户首次登录时,会生成有关该用户的一些信息。
我需要将此信息保存在Google Assistant的userStorage中,以便可以在嵌入式编辑器中获取此信息,以实现Dialogflow。
我已经有了从userStorage获取信息的代码:
let userStorage = request.body.originalDetectIntentRequest.payload.user.userStorage || JSON.stringify({});
let uninterId;
userStorage = JSON.parse(userStorage);
if (userStorage.hasOwnProperty('uninterId')) {
uninterId = userStorage.uninterId;
}
现在我需要知道如何使我的应用程序通过Android应用程序保存该信息。
是否可以将数据保存在Google助手之外的userStorage上?
我该怎么做?