mangstadt / ez-vcard

A vCard parser library for Java
Other
398 stars 92 forks source link

what is the way to add social media contact? #138

Closed KlyukinSA closed 10 months ago

KlyukinSA commented 1 year ago

There is socialProfile property in vCard to add a social network. How to add it to my VCard object? Now i had to use addExtendedProperty():

String type = contactEnum.toString();
RawProperty property = vcard.addExtendedProperty("SOCIALPROFILE", url);
property.addParameter("TYPE", type);
mangstadt commented 1 year ago

ez-vcard does not recognize that property. However, as you have discovered, you can use the VCard.addExtendedProperty method to insert properties with arbitrary names and values into a vCard.