0

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: Telegram Channel Permissions

David Con
  • 422
  • 3
  • 5
  • 15

1 Answers1

1

TLSharp seems no longer maintained.. Try WTelegramClient instead

Wizou
  • 1,336
  • 13
  • 24