2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

HeadwatersAdvent Calendar 2019

Day 20

Actions on GoogleでUserStorageAPIを使ってデータを保存・取得する

Last updated at Posted at 2019-12-20

なにをしたか

Actions on Googleで、データベースを使うことなく会話・セッション間でも値の受け渡しができるようにしました。contextsだと、セッション間で値がリセットされていしまいます。。

なにを使ったか

https://developers.google.com/assistant/conversational/webhook/reference/rest/Shared.Types/AppResponse#FIELDS.user_storage
こちらのActions on Googleが提供してくれているUserStorageAPIというアクションごとのデータ保存領域を使うことで、会話をまたいでデータを保存しておけます。

どんな風に使うか

ver.2のコードで、conv.user.storageという風にかくだけでOK。便利!

node.js
app.intent("...", conv => {
    // ユーザーストレージのpageに書き込み
    conv.user.storage.page = 1;
    // ユーザーストレージのpageから読み取り
    const page = conv.user.storage.page;
});

リセットしたいとき

node.js
conv.user.storage = {}; 

こちらをかくだけでstorageの中身がリセットできます。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?