我正在使用 botkit,并且正在尝试通过 firebase 进行存储。
我正在使用 botkit-storage-firebase 模块:https ://github.com/howdyai/botkit-storage-firebase
但是,当我尝试保存任何东西(或获取任何东西)时,我是Permission denied
从 Firebase获取的
controller.storage.users.save({ id: 'words', words: response.words });
我必须将数据库的安全规则设置为:
{
"rules": {
".read": true,
".write": true
}
}
然而,为了能够使用它,让我的数据库没有安全性显然不是我想要的。
如何使用botkit-storage-firebase
模块向 Firebase 进行身份验证?