how to add contacts in telegram-cli by using vcard?
im trying to add my contacts in telegram-cli by using vcard. but when i use this command: import_card <card> nothing happen! it just goes to next line without any error and no contact added. my vcard is VERSION:2.1 how can i improt my contacts to my telegram account by using vcard? Install-Package TLSharp client = new TelegramClient(apiId, apiHash); await client.ConnectAsync(); var phoneContact = new TLInputPhoneContact() { phone = "", first_name = "", last_name = "" }; var contacts = new List<TLInputPhoneContact>() { phoneContact }; var req = new TeleSharp.TL.Contacts.TLRequestImportContacts(