2

いくつかの例を読んだ後、次のようなログインでヘルプシフト用のクローラーを実装したいと思いました。

https://target.helpshift.com/login/?next=%2Fadmin%2Fissues%2F

import org.jsoup.Connection;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;

public class JsouptTest {

    public static void main(String[] args) throws Exception {
        int x = 1;
        Connection.Response loginForm = Jsoup.connect("https://target.helpshift.com/login/?next=%2Fadmin%2Fissues%2F" + x + "%2F")
                .method(Connection.Method.GET)
                .userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0")
                .execute();

        Document document = Jsoup.connect("https://target.helpshift.com/login/")
                .data("cookieexists", "false")
                .data("username", "email@example.com")
                .data("password", "123456")
                .userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0")
                .cookies(loginForm.cookies())
                .post();
        System.out.println(document);

    }

}

ただし、次のエラーが発生します。

スレッド "main" org.jsoup.HttpStatusException での例外: URL の取得中に HTTP エラーが発生しました。Status=403、URL= https://target.helpshift.com/login/ at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.java:537) at org.jsoup.helper.HttpConnection$Response.execute( HttpConnection.java:493) で org.jsoup.helper.HttpConnection.execute(HttpConnection.java:205) で org.jsoup.helper.HttpConnection.post(HttpConnection.java:200) で edu.utfpr.helpcrawler.JsouptTest.main (JsouptTest.java:32)

4

1 に答える 1