2

Currently, I am using WTelegramClient library on C#; how can I delete my telegram account avatar?

Erçin Dedeoğlu
  • 4,950
  • 4
  • 49
  • 69

1 Answers1

1

Easy:

await client.Photos_UpdateProfilePhoto(null);

(a null InputPhoto means inputPhotoEmpty)

Erçin Dedeoğlu
  • 4,950
  • 4
  • 49
  • 69
Wizou
  • 1,336
  • 13
  • 24