This adapter is made to work with skipper.
The conventional test suite for skipper adapter can't be used for this adapter because cloudinary only support images and videos. Thus there are no tests for the moment.
Any PR, advice is welcomed :-)
req.file('awesomefile')
.upload({
adapter : require('skipper-cloudinary'),
key : 'cloudinaryApiKey',
secret : 'cloudinarySecretKey',
cloudName: 'cloudinaryCloudName',
uploadOptions: {
folder: 'awesomefolder'
}
}, (error, uploadedFiles) => {
uploadedFiles.forEach(uploadedFile => {
console.log(uploadedFile); // contains regular meta
console.log(uploadedFile.extra); // contains cloudinary response
});
});
Option | Type | Description |
---|---|---|
key | ((string)) | Api key of cloudinary |
secret | ((string)) | Api secret of cloudinary |
cloudName | ((string)) | Name of your cloudinary cloud |
uploadOptions | ((object)) | Options directly given to the cloudinary uploader. See the Cloudinary documentation for all options. |