All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.cssxsh.pixiv.apps.Trending.kt Maven / Gradle / Ivy

package xyz.cssxsh.pixiv.apps

import io.ktor.client.call.*
import io.ktor.client.request.*
import xyz.cssxsh.pixiv.*

public suspend fun PixivAppClient.trendingTagsIllust(
    filter: FilterType? = null,
    url: String = TRENDING_TAGS_ILLUST,
): TrendIllustData = useHttpClient { client ->
    client.get(url) {
        parameter("filter", filter)
    }.body()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy