I'm trying to get full source-code from a website in Android, but it stops in the middle. I have two webpages, with the same contents (it's a shows site, different performers) and I can't figure out why it's not working with the other performer. This is the webpage which I can't get the full source code: First Performer
I'm using:
String url = "https://www.zappa-club.co.il/%D7%AA%D7%92%D7%99%D7%95%D7%AA/%D7%92%D7%99%D7%99%D7%9F-%D7%91%D7%95%D7%A8%D7%93%D7%95/"
Document doc = Jsoup.connect(url).get();
What am I doing wrong?
Thanks!