3

Currently I am using WTelegramClient library on C#, how can I change my telegram account avatar, I can't find instructions in EXAMPLES

HTL CO
  • 41
  • 6

1 Answers1

1

If your picture resides currently on your computer, uploading it as your new account profile picture is as easy as:

var inputFile = await client.UploadFileAsync(@"C:\Pictures\Me.jpg");
await client.Photos_UploadProfilePhoto(inputFile);
Wizou
  • 1,336
  • 13
  • 24