我想用JSoup解析一個Twitter列表(例如https://twitter.com/spdbt/lists/spd-bundestagsabgeordnete/members)。我的問題是,該網頁是動態的,即我只收到頁面的前20個結果。有沒有什麼辦法JSoup可以獲取整個頁面?JSoup:解析Twitter列表
目前,我的代碼如下所示:
Document doc = Jsoup.connect(listAdress).get();
Elements usernames = doc.select(".username.js-action-profile-name");
Elements realNames = doc.select(".fullname.js-action-profile-name");
// iterate over usernames and realNames and do something
提前感謝!
我不認爲這是可能的:[更多信息](http://stackoverflow.com/questions/25749309/using-jsoup-to-parse-a-dynamic-page) –