xyz.cssxsh.pixiv.fanbox.FanBoxPayment.kt Maven / Gradle / Ivy
package xyz.cssxsh.pixiv.fanbox
import io.ktor.client.request.*
import io.ktor.http.*
import xyz.cssxsh.pixiv.*
import xyz.cssxsh.pixiv.web.*
public class FanBoxPayment(override val client: PixivWebClient) : FanBoxApi() {
public companion object {
internal const val LIST_PAID = "https://api.fanbox.cc/payment.listPaid"
internal const val LIST_UNPAID = "https://api.fanbox.cc/payment.listUnpaid"
}
public suspend fun listPaid(): List {
return client.ajax(api = LIST_PAID) {
header(HttpHeaders.Origin, "https://www.fanbox.cc")
header(HttpHeaders.Referrer, "https://www.fanbox.cc/")
}
}
public suspend fun listUnpaid(): List {
return client.ajax(api = LIST_UNPAID) {
header(HttpHeaders.Origin, "https://www.fanbox.cc")
header(HttpHeaders.Referrer, "https://www.fanbox.cc/")
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy