我正在使用 Jovo 2 作为我的 Google Actions - Dialogflow 项目的 Webhook 出于某些原因,我无法为我的项目的 1 个意图获取密钥、类型、令牌* 你有类似的问题吗?谢谢你。
这就是我设置和获取密钥、类型和令牌的方式。我有不同的代码来处理不同的意图,但setSessionAttribute和getSessionAttribute对于所有意图都是相同的
this.setSessionAttribute('token', token);
this.setSessionAttribute('key', key);
this.setSessionAttribute('type', type);
// In other file
let type = app.getSessionAttribute('type');
let key = app.getSessionAttribute('key');
let token = app.getSessionAttribute('token');
"jovo-core": "^2.2.12",
"jovo-db-dynamodb": "^2.2.12",
"jovo-db-filedb": "^2.2.12",
"jovo-framework": "^2.2.15",
"jovo-platform-alexa": "^2.2.17",
"jovo-platform-dialogflow": "^2.2.13",
"jovo-platform-googleassistant": "^2.2.15",