i'm using botkit , i'm trying storage working through firebase.
i'm using botkit-storage-firebase module: https://github.com/howdyai/botkit-storage-firebase
however when try save (or anything), i'm getting permission denied
firebase
controller.storage.users.save({ id: 'words', words: response.words });
i had set security rules of database to:
{ "rules": { ".read": true, ".write": true } }
to able use it, however, leaving database without security not want.
how can authenticate firebase botkit-storage-firebase
module?
i ran same issue working botkit , firebase. turns out botkit-storage-firebase using firebase 2.0 not compatible current version. found pull request hasn't been merged yet , used repo , works smoothly now. can change security rules well.
here's link fork- https://github.com/esjay/botkit-storage-firebase