cordova-plugin-photos icon indicating copy to clipboard operation
cordova-plugin-photos copied to clipboard

Impossible to get the image

Open ishigo1987 opened this issue 4 years ago • 2 comments

Hello everyone, this code

Photos.image(photo.ID,
    function(data) {
       console.log(data)
    },
    function(error) {
        console.error("Error: " + error);
    });

with the proper photo.id return by this code

Photos.photos( 
    function(photos) {
        console.log(photos);
    },
    function(error) {
        console.error("Error: " + error);
    });

does not works, i've this error Photo ID is undefined

ishigo1987 avatar Apr 27 '20 12:04 ishigo1987