Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Storage upload image file from Node.js

Please help

I receive images from the client and save it on my server in the file system and process this image, after which I need to upload it to firebase storage

I try upload image file to firebase storage from Node.js in my async function

const path = process.cwd() + '/my_image.jpg';
const file = readFileSync(path);
await firebase.storage().ref().child('my_image.jpg').put(file);
...

But i have error

The first argument must be of type string or an instance of Buffer. Received an instance of Uint8Array

Okey, i try binary format

const path = process.cwd() + '/my_image.jpg';
const file = readFileSync(path, { encoding: 'base64' });
await firebase.storage().ref().child('my_image.jpg').putString(file, 'base64');
...

And i get error

Firebase Storage: String does not match format 'base64': Invalid character found"

I've already tried a lot of things, but nothing works! What am I doing wrong?

like image 599
magersoft Avatar asked Mar 29 '20 23:03

magersoft


People also ask

How do I upload images to Firebase Storage?

Create a new project on android studio or open an existing project in which you want to add authentication and add the firebase to that android application. Two buttons: one for selecting an image from gallery. other button is for uploading an image on firebase storage on the cloud.

Can I store image in Firebase?

The Firebase SDKs for Cloud Storage add Google security to file uploads and downloads for your Firebase apps, regardless of network quality. You can use our SDKs to store images, audio, video, or other user-generated content.

Can you upload images to firestore?

Also, make sure that you've set up a Firebase app and have the right to access Firestore. Create a utils/ directory in src and add a new file named Firebase. js . This file will contain two methods that will handle uploading an image with relevant post data to Firestore in a collection called posts .


1 Answers

You can use this code right here

var admin = require("firebase-admin");
const uuid = require('uuid-v4');

// CHANGE: The path to your service account
var serviceAccount = require("path/to/serviceAccountKey.json");

admin.initializeApp({
    credential: admin.credential.cert(serviceAccount),
    storageBucket: "<BUCKET_NAME>.appspot.com"
});

var bucket = admin.storage().bucket();

var filename = "path/to/image.png"

async function uploadFile() {

  const metadata = {
    metadata: {
      // This line is very important. It's to create a download token.
      firebaseStorageDownloadTokens: uuid()
    },
    contentType: 'image/png',
    cacheControl: 'public, max-age=31536000',
  };

  // Uploads a local file to the bucket
  await bucket.upload(filename, {
    // Support for HTTP requests made with `Accept-Encoding: gzip`
    gzip: true,
    metadata: metadata,
  });

console.log(`${filename} uploaded.`);

}

uploadFile().catch(console.error);

To successfully run this code, you will need to:

  • Add the Firebase Admin SDK to Your Server
  • Install uuid-v4
  • Replace "path/to/serviceAccountKey.json" with the path to your own service account. Here is a guide to get yours.
  • Replace <BUCKET_NAME> with the name of your default bucket. You can find this name in the Storage section of your Firebase Console. The bucket name must not contain gs:// or any other protocol prefixes. For example, if the bucket URL displayed in the Firebase Console is gs://bucket-name.appspot.com, pass the string bucket-name.appspot.com to the Admin SDK.
  • Replace "path/to/image.png" with the path to your own image.
  • If needed, adjust the contentType in the metadata accordingly.

Just to let you know, whenever you upload an image using Firebase Console, an access token will be automatically generated. However, if you upload an image using any Admin SDK or gsutil you will need to manually generate this access token yourself. That's why it is very important the uuid part

Firebase Support says that this is being fixed, but I think anyone having this problem should go this way instead of waiting for Firebase to fix this.

like image 129
hemauricio Avatar answered Nov 15 '22 23:11

hemauricio