WebViewResolver

actual class WebViewResolver(val interceptUrl: Regex, val additionalUrls: List<Regex>, val userAgent: String?, val useOkhttp: Boolean, val script: String?, val scriptCallback: (String) -> Unit?, val timeout: Long) : Interceptor(source)

When used as Interceptor additionalUrls cannot be returned, use WebViewResolver(...).resolveUsingWebView(...)

Parameters

interceptUrl

will stop the WebView when reaching this url.

additionalUrls

this will make resolveUsingWebView also return all other requests matching the list of Regex.

userAgent

if null then will use the default user agent

useOkhttp

will try to use the okhttp client as much as possible, but this might cause some requests to fail. Disable for cloudflare.

script

pass custom js to execute

scriptCallback

will be called with the result from custom js

timeout

close webview after timeout

Constructors

Link copied to clipboard
actual constructor(interceptUrl: Regex, additionalUrls: List<Regex>, userAgent: String?, useOkhttp: Boolean, script: String?, scriptCallback: (String) -> Unit?, timeout: Long)

Types

Link copied to clipboard
actual object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun intercept(chain: Interceptor.Chain): Response
Link copied to clipboard
suspend fun resolveUsingWebView(request: Request, requestCallBack: (Request) -> Boolean = { false }): Pair<Request?, List<Request>>
suspend fun resolveUsingWebView(url: String, referer: String? = null, method: String = "GET", requestCallBack: (Request) -> Boolean = { false }): Pair<Request?, List<Request>>