我尝试将用户移至另一个频道。因此,我使用了user.ModifyAsync。但是服务器以错误400响应:BadRequest答复。
我的代码是:
private async void move_user(SocketGuildUser user, ulong new_channel)
{
await user.ModifyAsync(x=> { x.ChannelId = new_channel; });
}
我用最新的discord.net nuget包尝试过。