Good day.

In general, there is a site, it displayed 8 pictures. With the help of the "upload more" button, the list of pictures is supplemented with eight more copies. And so far until the end does not reach. The instagram has a similar scheme. I managed to parse the first eight pictures, now I don’t know how to parse the rest? Android + Jsoup.

Tell me, please, how to parse in such cases? I understand that in order to parse all the pictures, you need to press the "load more" button for the required number of times programmatically. Or not?

  • the rest of the images are loaded dynamically, they are not in the original HTML. This means that using JSOUP you can not download them. You need to first perform the same request as the site does to the server, uploading pictures - Vladyslav Matviienko
  • Then is it logical to add a button to the application like on the "download more" website? - Crok
  • Usually, pagination takes place automatically when the last element of the list is shown (this is if you use lists). I would not make a button, but download automatically - Vladyslav Matviienko

0