ile giriş yapılabilen Java hurda web sitesi, streetinsider.com adresinden verileri yazdırmak istiyorum (div with class = "news_article"). Bir hesap oluşturdum ve bu verilere erişmek için giriş yapmam gerekiyor.Jsoup
Bu kodun neden çalışmadığını bana açıklayan var mı? Çok çalıştım ama hiçbir şey çalışmıyor.
public static final String SPLIT_INTERNET_URL = "http://www.streetinsider.com/Special+Dividends?offset=55";
public static final String SPLIT_LOGIN = "https://www.streetinsider.com/login.php";
/**
* @param args the command line arguments
* @throws java.io.FileNotFoundException
* @throws java.io.UnsupportedEncodingException
* @throws java.text.ParseException
* @throws java.lang.ClassNotFoundException
*/
public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException, IOException, ParseException, ClassNotFoundException {
// TODO code application logic here
Response res = Jsoup.connect(SPLIT_LOGIN)
.data("loginemail", "XXXXX", "password", "XXXX")
.method(Method.POST)
.execute();
Document doc = res.parse();
Map<String, String> cookies = res.cookies();
Document pageWhenAlreadyLoggedIn = Jsoup.connect(SPLIT_INTERNET_URL).cookies(cookies).get();
Elements elems = pageWhenAlreadyLoggedIn.select("div[class=news_article]");
for (Element elem : elems) {
System.out.println(elem);
}
}
oldukça emin web sitesi gerektirir ne değildir, hangi HTTP TEMEL AUTH farz olduğunu. Bir oturum belirteci almanız ve seansı almanız gerekecek. –