React native fetch blob not downloading image on iOS

2.8k Views Asked by At

I am trying to download image using rn-fetch-blob library but it is not getting downloaded from my server. The same code is working well with android but not on iOS. I am also using camera roll to save the image in the gallery but it is throwing the error Could not find image . What am I doing wrong?

Download code

   function DownloadImage(url,id){
    let imgUrl = url;

    let newImgUri = imgUrl.lastIndexOf('/');
    let imageName = imgUrl.substring(newImgUri);
    let dirs = RNFetchBlob.fs.dirs;
    let path = Platform.OS === 'ios' ? dirs['DownloadDir'] + imageName : dirs.PictureDir + imageName;   
        RNFetchBlob.config({
          fileCache: true,
          appendExt: 'png',
          path: path,
    
        }).fetch("GET", imgUrl).then(res => {
         CameraRoll.save(res.path()).then(()=>{
            }).catch((ex)=>{
                alert("Error="+ex);
            });
        }).catch(error=>{
            obj.loadingflag=false;
            alert(error);
        });
        
   }
1

There are 1 best solutions below

1
On

ifaced the same issue on IOS. solution is on response you have to do this

.then(resp => {
      // console.log(resp);
      if (Platform.OS === "ios") {
        RNFetchBlob.ios.openDocument(resp.data);
      }
    })

you can refer my answer stack overflow response