Linkbox

open class Linkbox : ExtractorApi

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
data class Data(val itemInfo: Linkbox.ItemInfo? = null, val itemId: String? = null)
Link copied to clipboard
data class ItemInfo(val resolutionList: ArrayList<Linkbox.Resolutions>? = arrayListOf())
Link copied to clipboard
data class Resolutions(val url: String? = null, val resolution: String? = null)
Link copied to clipboard
data class Responses(val data: Linkbox.Data? = null)

Properties

Link copied to clipboard
open override val mainUrl: String
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val requiresReferer: Boolean = true
Link copied to clipboard

Determines which plugin a given extractor is from

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
suspend fun getSafeUrl(url: String, referer: String? = null, subtitleCallback: (SubtitleFile) -> Unit, callback: (ExtractorLink) -> Unit)
Link copied to clipboard
open suspend override fun getUrl(url: String, referer: String?, subtitleCallback: (SubtitleFile) -> Unit, callback: (ExtractorLink) -> Unit)

open suspend fun getUrl(url: String, referer: String? = null): List<ExtractorLink>?

Will throw errors, use getSafeUrl if you don't want to handle the exception yourself