top of page

Firebase Admin SDK

How to use the Firebase Admin Node.js SDK to access to Firebase services with Make.com or Integromat.

Input:

{

   "db": "https://<DATABASE_NAME>.firebaseio.com", 

   "refreshToken": "<YOUR TOKEN>"

}

JS-Code:

firebaseAdmin.initializeApp({
credentials: firebaseAdmin.refreshToken(input.refreshToken),      databaseURL: input.db
})

Output:

{ output: {XYZ} }

Screenshot 2023-09-19 at 21.01.45.png
bottom of page