me

abstract suspend fun me(withCache: Boolean): User(source)

获取当前bot对应的用户信息。

如果 withCachetrue 且当前bot内存在上一次查询的结果缓存, 则直接得到缓存,否则通过API查询。

通过API查询的结果会刷新至当前的内部缓存。

Return

API得到的用户信息结果


open suspend fun me(): User(source)

通过API实时查询当前bot对应的用户信息。

通过API查询的结果会刷新至当前的内部缓存。

Return

API得到的用户信息结果