Skip to content Skip to sidebar Skip to footer

How To Upload Javascript File Object To Cloudinary Using Node Js Api?

I need to upload a file to image server and i choose to go with cloudinary from my node js api. i installed the npm package for cloudinary and used the code as per their api docum

Solution 1:

Answering your question

How to upload image using file object on cloudinary?

In order to upload File object to cloudinary, you can use upload_stream method instead of upload. check documentation here.

Corrected your code:

var cloudinary = require('cloudinary').v2;
functionuploadProfilePic(req, res, next) {
   let file = (req && req.files.file) ? req.files.file : '';
   cloudinary.uploader.upload_stream({ resource_type: 'raw' }, function(error, result) {
      if (!error && result.url) {
         req.body.imageURL = result.url;
         next();
      }
      else {
         req.body.imageURL = '';
         next();
      }
   }).end(file.data);
}

Post a Comment for "How To Upload Javascript File Object To Cloudinary Using Node Js Api?"