Google cloud platform 会话结束后有没有办法清除会话历史记录

Google cloud platform 会话结束后有没有办法清除会话历史记录,google-cloud-platform,dialogflow-es,actions-on-google,Google Cloud Platform,Dialogflow Es,Actions On Google,我的谷歌助手应用程序为用户提供敏感数据,如果没有双因素身份验证,这些数据不应该可见。 不幸的是,即使在会话结束后,在助手应用程序中向上滚动后,用户和助手之间说的每句话都会被保存并可见。 有没有办法关闭会话保存,使会话结束后会话不可见 用户可以关闭助手对话历史记录保存功能,但由于应用程序应该是完全安全的,因此似乎无法解决问题。在对话结束时,您可以要求用户手动删除其历史记录: conv.ask(`Remember to clear your Google Assistant activity!`);

我的谷歌助手应用程序为用户提供敏感数据,如果没有双因素身份验证,这些数据不应该可见。 不幸的是,即使在会话结束后,在助手应用程序中向上滚动后,用户和助手之间说的每句话都会被保存并可见。 有没有办法关闭会话保存,使会话结束后会话不可见


用户可以关闭助手对话历史记录保存功能,但由于应用程序应该是完全安全的,因此似乎无法解决问题。

在对话结束时,您可以要求用户手动删除其历史记录:

conv.ask(`Remember to clear your Google Assistant activity!`);

if (!conv.surface.capabilities.has('actions.capability.SCREEN_OUTPUT')) {
  conv.ask('For instructions on how to clear your activity, please revisit this action from a device with a screen.');
  return;
}

// Create a basic card
conv.ask(new BasicCard({
  text: 'Your Google Assistant stores your past activity to do things like remember your interests and give more personalized responses. You can see or delete your past activity at any time.'
  title: 'Delete your Google Assistant activity.',
  buttons: new Button({
    title: 'Learn how',
    url: 'https://support.google.com/assistant/answer/7108295?co=GENIE.Platform%3DAndroid&hl=en',
  }),
}));

来源:,

感谢您的回复!你认为谷歌助手应用程序有没有可能隐式删除历史记录,或者根本不存储历史记录?