I am trying to upload a photo with Lepozepo/cloudinary
This is my server and client config
server:
Cloudinary.config({
cl
Please use "_upload_file" instead of "upload". "_upload_file" is used in "upload" actually. But somehow you can not catch err and response when you use "upload"
You can catch err and response.
Meteor Version : 1.1.0.3
lepozepo:cloudinary : 1.0.2
Cloudinary._upload_file(files[0], {}, function(err, res) {
if (err){
console.log(err);
return;
}
console.log(res);
});