Currently I am using WTelegramClient library on C#, how can I change my telegram account avatar, I can't find instructions in EXAMPLES
Currently I am using WTelegramClient library on C#, how can I change my telegram account avatar, I can't find instructions in EXAMPLES
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);