I can create a new channel like this, where client is a TLSharp.Core.TelegramClient
authenticated and conected:
TeleSharp.TL.Channels.TLRequestCreateChannel newChannel = new
TeleSharp.TL.Channels.TLRequestCreateChannel();
newChannel.Megagroup = true;
newChannel.Title = channelName;
newChannel.About = channelDescription;
return await client.SendRequestAsync<TeleSharp.TL.TLUpdates>(newChannel);
Does anyone know how to modify this permissions?
I would need to allow Add Users
and then deny Send Stickers
and Polls
Thank you very much!!
In the image below I show the default permissions after creation:
TLSharp seems no longer maintained.. Try WTelegramClient instead