長野エンジニアライフ

東京から長野に移住したエンジニアのブログです。🦒🗻⛰

2020-06-01から1ヶ月間の記事一覧

【Firebase】Functionからstorageの署名付きURLを取得しようとしたらError: 7 PERMISSION_DENIED: Missing or insufficient permissions.

事象 [Firebase] Functionからstorageの署名付きURLを取得しようとしたら 以下のエラーが発生(コンソール画面からIAM APIは有効に設定済み かつ トークン作成者の権限も付与済) Error: 7 PERMISSION_DENIED: Missing or insufficient permissions. 原因 IAM…

【Firebase】Functionからstorageの署名付きURLを取得しようとしたら Error: Permission iam.serviceAccounts.signBlob is required to perform this operation on service account projects

事象 [Firebase] Functionからstorageの署名付きURLを取得しようとしたら 以下のエラーが発生(コンソール画面からIAM APIは有効に設定済み) Error: Permission iam.serviceAccounts.signBlob is required to perform this operation on service account proj…

【Firebase】Functionからstorageの署名付きURLを取得しようとしたら Error: Identity and Access Management (IAM) API has not been used in project XXXXX

事象 Functionからstorageの署名付きURLを取得しようとしたら以下のエラーが発生した。 Error: Identity and Access Management (IAM) API has not been used in project 原因 GCPのコンソールにて、Management (IAM) APIが無効になっていたことが原因。 対…

Error: @grpc/grpc-js only works on Node ^8.13.0 || >=10.10.0の対応

起こったこと 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でバージョンをインストールする

インストール可能なバージョンの確認 nodebrew ls-remote バージョンを指定してインストール nodebrew install-binary v8.14.0 バージョンを切り替える nodebrew use v8.14.0

TypeError: firebase_app__WEBPACK_IMPORTED_MODULE_13___default.a.storage is not a function

事象 storageから画像を参照すると以下のエラーが発生 TypeError: firebase_app__WEBPACK_IMPORTED_MODULE_13___default.a.storage is not a function 原因/対応 firebaseの設定ファイルでimport 'firebase/storage'のimport文が必要のため追加した 参考記事…