newBot

open override fun newBot(    qq: Long,     password: String,     configuration: BotConfiguration): Bot

使用指定的 配置 构造 Bot 实例


open override fun newBot(    qq: Long,     passwordMd5: ByteArray,     configuration: BotConfiguration): Bot

使用指定的 配置 构造 Bot 实例

Parameters

passwordMd5

16 bytes


inline fun newBot(    qq: Long,     password: String,     configuration: BotConfiguration.() -> Unit): Bot

使用指定的 配置 构造 Bot 实例

newBot(123, "") {
// this: BotConfiguration
fileBasedDeviceInfo()
}

Since

2.7


inline fun newBot(    qq: Long,     passwordMd5: ByteArray,     configuration: BotConfiguration.() -> Unit): Bot

使用指定的 配置 构造 Bot 实例

newBot(123, password) {
// this: BotConfiguration
fileBasedDeviceInfo()
}

Since

2.7