![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.message.MessageAPI.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.message
import com.hiczp.bilibili.api.message.model.NotifyCount
import com.hiczp.bilibili.api.message.model.UplmList
import kotlinx.coroutines.Deferred
import retrofit2.http.GET
/**
* 消息推送有关的接口
*/
@Suppress("DeferredIsResult")
interface MessageAPI {
/**
* 获取消息数量
* 首页 -> 右上角 talk 图标
*/
@GET("/api/notify/query.notify.count.do")
fun queryNotifyCount(): Deferred
/**
* 荣誉周报
*/
@Suppress("SpellCheckingInspection")
@GET("/api/notify/get.uplm.list.do")
fun getUplmList(): Deferred
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy