Upload files to Firebase Storage using Node.js

前端 未结 6 600
情书的邮戳
情书的邮戳 2020-11-27 14:02

I\'m trying to understand how to upload files in Firebase Storage, using Node.js. My first try was to use the Firebase library:

"use strict";

var f         


        
6条回答
  •  攒了一身酷
    2020-11-27 14:37

    Firebase Storage is now supported by the admin SDK with NodeJS:

    https://firebase.google.com/docs/reference/admin/node/admin.storage

    // Get the Storage service for the default app
    var defaultStorage = firebaseAdmin.storage();
    var bucket = defaultStorage.bucket('bucketName');
    ...
    

提交回复
热议问题