I have an URL like this -> blob:http%3A//localhost%3A4400/a558ba4c-076b-490a-999d-92bc85f2bcee, but this URL only can be readed in my browser but not in another.
.controller('cameraCtrl', function ($scope, Camera) { 
    $scope.takePhoto= function () { 
        Camera.takePhoto().then(function (urlImage) { 
            $scope.lastPicture = urlImagen; 
        }, 
        function (err) { 
            console.err(err); 
        }, 
        { 
            quality: 50, 
            targetWidth: 50, 
            targetHeight: 50, 
            saveToPhotoAlbum: true 
        }); 
    }; 
}
The question is: How to get the image for that URL to convert it to a string Base64? Any help would be great, thank you.
 
     
    