2020-06-01から1ヶ月間の記事一覧
事象 [Firebase] Functionからstorageの署名付きURLを取得しようとしたら 以下のエラーが発生(コンソール画面からIAM APIは有効に設定済み かつ トークン作成者の権限も付与済) Error: 7 PERMISSION_DENIED: Missing or insufficient permissions. 原因 IAM…
事象 [Firebase] Functionからstorageの署名付きURLを取得しようとしたら 以下のエラーが発生(コンソール画面からIAM APIは有効に設定済み) Error: Permission iam.serviceAccounts.signBlob is required to perform this operation on service account proj…
事象 Functionからstorageの署名付きURLを取得しようとしたら以下のエラーが発生した。 Error: Identity and Access Management (IAM) API has not been used in project 原因 GCPのコンソールにて、Management (IAM) APIが無効になっていたことが原因。 対…
起こったこと firebaseのfunctionをデプロイしたら以下のエラーが発生 ✔ functions: Finished running predeploy script. i functions: ensuring necessary APIs are enabled... ✔ functions: all necessary APIs are enabled i functions: preparing functi…
インストール可能なバージョンの確認 nodebrew ls-remote バージョンを指定してインストール nodebrew install-binary v8.14.0 バージョンを切り替える nodebrew use v8.14.0
事象 storageから画像を参照すると以下のエラーが発生 TypeError: firebase_app__WEBPACK_IMPORTED_MODULE_13___default.a.storage is not a function 原因/対応 firebaseの設定ファイルでimport 'firebase/storage'のimport文が必要のため追加した 参考記事…