Call picacomic
API in Kotlin.
Gradle
compile group: 'com.hiczp', name: 'picacomic-api', version: '0.0.1'
Recommend HttpEngine is CIO, see all available engines below
https://ktor.io/clients/http-client/engines.html
Example:
val picaComicClient = PicaComicClient(CIO)
picaComicClient.signIn("email", "password")
//get title of categories(嗶咔漢化, 全彩, 長篇 etc)
val categories = picaComicClient.category.get().data.map { it.title }
//first comic in category "全彩"
val firstComic = picaComicClient.comic
.search(category = PredefinedCategory.全彩.name)
.data.docs.first().comicId
//episodes of a comic
val episodes = picaComicClient.comic.getAllEpisodes(firstComic)
//all pages in first episode
val pages = picaComicClient.comic.getAllPages(firstComic, 1)
//url of first page in episode
val url = pages.first().media.urlString
picaComicClient.close()
How to use other HttpEngine and use proxy?
val picaComicClient = PicaComicClient(Apache) {
engine {
customizeClient {
setProxy("proxyHost", 8080)
}
}
}
How to download image(s)?
val imageFile = File("001.jpg")
HttpClient(CIO).use {
get<ByteReadChannel>(url).copyAndClose(imageFile.writeChannel())
}
Apache 2.0