pub async fn login_with_password_md5(
    uin: i64,
    password_md5: &[u8],
    protocol: Protocol,
    data_folder: impl AsRef<Path>
) -> Result<(Arc<Client>, AliveHandle), LoginError>
Expand description

使用密码 MD5 登录。

Python

async def login_with_password_md5(
    uin: int,
    password_md5: bytes,
    protocol: Protocol,
    data_folder: str = "./bots",
) -> Tuple[Client, AliveHandle]: ...