web-dev-qa-db-ja.com

警告、FIREBASE_CONFIG環境変数がありません。 firebase-adminの初期化は失敗します

Firebaseのドキュメントをフォローしても、firebaseに接続できません。
誰かがこの問題に直面していますか?
https://firebase.google.com/docs/firestore/quickstarthttps://firebase.google.com/docs/firestore/manage-data/add -data

???? index.js

var admin = require("firebase-admin");
var serviceAccount = require("./key/serviceAccountKey.json");
admin.initializeApp({
  credential: admin.credential.cert(serviceAccount),
  databaseURL: "https://sampleLink.firebaseio.com"
});
const functions = require('firebase-functions');

var db = admin.firestore();
var data = {
  name: 'Los Angeles',
  state: 'CA',
  country: 'USA'
};

// Add a new document in collection "cities" with ID 'LA'
var setDoc = db.collection('cities').doc('LA').set(data);
setDoc

???? package.json

{
  "name": "functions",
  "description": "Cloud Functions for Firebase",
  "scripts": {
    "serve": "firebase serve --only functions",
    "Shell": "firebase functions:Shell",
    "start": "npm run Shell",
    "deploy": "firebase deploy --only functions",
    "logs": "firebase functions:log"
  },
  "dependencies": {
    "firebase": "^5.7.3",
    "firebase-admin": "~6.0.0",
    "firebase-functions": "^2.1.0"
  },
  "private": true
}

????コンソールの返品

tktktk:functions dev$ node index.js
Warning, FIREBASE_CONFIG environment variable is missing. Initializing firebase-admin will fail

The behavior for Date objects stored in Firestore is going to change
AND YOUR APP MAY BREAK.
To hide this warning and ensure your app does not break, you need to add the
following code to your app before calling any other Cloud Firestore methods:

  const firestore = new Firestore();
  const settings = {/* your settings... */ timestampsInSnapshots: true};
  firestore.settings(settings);

With this change, timestamps stored in Cloud Firestore will be read back as
Firebase Timestamp objects instead of as system Date objects. So you will also
need to update code expecting a Date to instead expect a Timestamp. For example:

  // Old:
  const date = snapshot.get('created_at');
  // New:
  const timestamp = snapshot.get('created_at');
  const date = timestamp.toDate();

Please audit all existing usages of Date when you enable the new behavior. In a
future release, the behavior will change to the new behavior, so if you do not
follow these steps, YOUR APP MAY BREAK.

私の環境は以下です:
$ firebase --version
6.3.0
$ノード-v
v8.12.0
$ npm -v
6.4.1

14
user10945377

私はまったく同じ問題を抱えていました。 Node version 1 に関係していることがわかり、Node 10を削除して、Node 8そしてすべてが魅力のように働いた...

 const functions = require('firebase-functions');
 const admin = require('firebase-admin');
 admin.initializeApp();

ちょうどヒット

 firebase deploy --only functions

Node v8。

9
Jasper Cuvelier

その_FIREBASE_CONFIG_警告は、JSONへのパスが欠落している(または不正である)ことを示唆しています。

必要に応じて_FIREBASE_CONFIG_をセットアップするか、または_GOOGLE_APPLICATION_CREDENTIALS_を 環境変数 としてセットアップしてから_gcloud auth application-default login_を実行します。次に、admin.credential.applicationDefault()の代わりにadmin.credential.cert(serviceAccount)を使用できます。

2
Martin Zeitler

このバージョンの依存関係(package.json内)をノードv8で使用してみてください。それは私のために働いた。

"dependencies": {
"firebase-admin": "~7.1.1",
"firebase-functions": "^2.2.1"

}、

0
Sridhar Natuva