Currently I am using WTelegramClient library on C#, how can I change my telegram account avatar, I can't find instructions in EXAMPLES
Asked
Active
Viewed 211 times
1 Answers
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