Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Admin INVALID_APP_OPTIONS error at initializeApp()

I'm trying to connect Instagram OAuth to Firebase through Node.js back-end. I have successfully retrieved Instagram account data including access_token which I want to exchange with firebase-admin's createCustomToken on my Node.js backend. My objective here is to generate custom token so my Angular app can do signInWithCustomToken(token) into my Firebase app. There is no problem on retrieving data from Instagram as I can print my JSON object on console.

The problem is occurred when I want to exchange my access_token to Firebase Custom Token.

I have followed this guide from Firebase Admin page for Node.js and I'm facing an error message below

throw new error_1.FirebaseAppError(error_1.AppErrorCodes.INVALID_APP_OPTIONS, "Invalid Firebase app options passed as the first argument to initializeApp() for the " +

Error: Invalid Firebase app options passed as the first argument to initializeApp() for the app named "[DEFAULT]". The "credential" property must be an object which implements the Credential interface.

Here is my code on related issue.

// authService.js

var fbAdmin = require('firebase-admin');
var serviceAccount = require('./key/key.json');

function createFirebaseToken(instagramID) {

        // I copy & pasted this var from other class
        var config = {
            apiKey: "MY_FIREBASE_APIKEY",
            authDomain: "MY_APP.firebaseapp.com",
            databaseURL: "https://MY_APP.firebaseio.com",
            storageBucket: "MY_APP.appspot.com",
        };

        console.log(fbAdmin.credential.cert(serviceAccount)); // serviceAccount successfully printed on console

        // Error appears when executing this function
        fbAdmin.initializeApp({
            serviceAccount: fbAdmin.credential.cert(serviceAccount),
            databaseURL: config.databaseURL
        });

        const uid = `instagram:${instagramID}`;
      
        // Create the custom token.
        console.log(uid);
        return fbAdmin.auth().createCustomToken(uid);
    }

It appears that my Node app cannot initialize a connection to firebase-admin but I have no idea the solution as I am a beginner on these technologies. Please advice.

like image 639
andhika.sw Avatar asked Sep 30 '17 16:09

andhika.sw


People also ask

What is Admin SDK?

The Admin SDK API is a RESTful API that can be used to programmatically create and manage admin-controlled resources owned by a Google Workspace account. Some use cases include: Creating and managing users and adding administrators. Creating and managing groups and group memberships.


1 Answers

This issue can be resolved by updating firebase-tools, firebase-functions and firebase-admin packages to the latest version.

npm install -g firebase-tools@latest
npm install firebase-functions@latest
npm install firebase-admin@latest

Refer this GitHub page for more details.

like image 95
Sarath S Menon Avatar answered Oct 10 '22 01:10

Sarath S Menon