添加java.head方法

用法与java.get 相同
pull/1827/head
ag2s20150909 2 years ago
parent 070a64c4a9
commit ebf8f63975
  1. 13
      app/src/main/java/io/legado/app/help/JsExtensions.kt

@ -218,6 +218,19 @@ interface JsExtensions {
.execute()
}
/**
* js实现重定向拦截,网络访问head,不返回Response Body更省流量
*/
fun head(urlStr: String, headers: Map<String, String>): Connection.Response {
return Jsoup.connect(urlStr)
.sslSocketFactory(SSLHelper.unsafeSSLSocketFactory)
.ignoreContentType(true)
.followRedirects(false)
.headers(headers)
.method(Connection.Method.HEAD)
.execute()
}
/**
* 网络访问post
*/

Loading…
Cancel
Save