i would like connect to https://www.notebooksbilliger.de/ but with following code it does not work:
try
{
Response response = Jsoup.connect(url)
.userAgent("Mozilla")
.ignoreContentType(true)
.execute();
System.out.println(response.url());
doc = response.parse();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
Why i get status 405? How i could solve this problem?
Many thanks..
Sebastian