i'm trying to download some photos from Facebook using this code
try {
request = new DownloadManager.Request(Uri.parse(array.getJSONObject(i).getString("src_big")));
System.out.println(array.getJSONObject(i).getString("src_big"));
} catch(JSONException e) { Log.e("JSONError", e.toString()); }
request.setTitle("Photo "+(i+1));
request.setDestinationInExternalPublicDir(directory, "Photo " +(i+1)+ ".jpg");
downloader.enqueue(request);
Links are corrects, the fact is that DownloadManager skips some files, if i enqueue 13 files it will download 10 files or whatever, if i retry with same files, the number changes. Maybe Facebook has a max number of simultaneus connections?