I tried to fetch the list of images in cloudinary with the help of API. I'm getting the image details other than exif(image_metadata). Help me to fetch the exif(image_metadata).
The below is the code which I used to fetch the details:
try {
let result = cloudinary.v2.api.resources({ image_metadata: true },
function(
error,
result
) {
console.log("result", result);
if (result) {
successCB(result);
}
});
} catch (err) {
failureCB(err);
}