我正在尝试使用下面的代码发送一个帖子请求,但它会出错。这是日志:
E/err: HTTP error fetching URL
E/err: org.jsoup.HttpStatusException: HTTP error fetching URL. Status=500, URL=https://eksisozluk.com/entry/favla
这是我的代码:
Jsoup.connect("https://eksisozluk.com/entry/favla")
.data("entryId", entryId)
.cookies(loginCookies)
.userAgent("Mozilla")
.method(Connection.Method.POST)
.execute();