Hey, im trying to use skrapeit but im having some ...
# skrape-it
c
Hey, im trying to use skrapeit but im having some issues when attempting to scrape anything using the example on the docs.
Copy code
skrape(HttpFetcher) { // <-- pass any Fetcher, e.g. HttpFetcher, BrowserFetcher, ...
        request {
            url = "<https://example.com>"
            // ... request options goes here, e.g the most basic would be url
        }
        response {
            println(responseBody)
            // do stuff with the response like parsing the response body ...
        }
    }
error is here, im using a discord library as well, could that be causing the issue?
Copy code
7191 [DefaultDispatcher-worker-4] ERROR dev.kord.core.Kord - catching(java.lang.NoClassDefFoundError: io/ktor/client/features/HttpTimeout)
java.lang.NoClassDefFoundError: io/ktor/client/features/HttpTimeout
let me know if you need any other details to help :P