Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.