Questions tagged [vcf-vcard]

vCard is a file format standard for e-business cards to identify people and organisations.

vCard is a file format standard for e-business cards to identify people and organisations.

They may contain various identification data such as name, address, phone numbers, e-mail addresses, URLs, logos, photographs, audio clips and etc.

705 questions
10
votes
3 answers

Can somebody recommend a good gem for contact handling?

I want to store person / company contacts with addresses and relations. Addresses can have multiple lines for streets, phonenumbers and emails. Would be also nice to have some kind of export feature. Contacthandling seems like a common task, so i…
9
votes
2 answers

Create link that adds vCard direct to Address book

I'm in the process of building a mobile site (for Iphones and Androids... I think Blackberry is out of it) Here the problem I'm with. We want to have a link that, when clicked, automatically adds the contact in the .vcf file to the address book of…
Fredy31
  • 2,660
  • 6
  • 29
  • 54
9
votes
2 answers

Adding vCard to Contacts in iOS 13

we have a web site that allows people to click on a link to a vCard .vcf file to install contact details on their phone. The method for handling this has changed in iOS 13 and it is really confusing people. Previously, the vCard opened in the…
user2472804
  • 383
  • 4
  • 7
9
votes
1 answer

Create VCF file with "PHOTO" imported using URL linking to an image file

I'm trying to create a .VCF file according to these specs (using version 3.0) https://en.wikipedia.org/wiki/VCard#vCard_3.0 https://www.rfc-editor.org/rfc/rfc2426#section-3.1.4 It all works fine unless the PHOTO field. If I try to set the PHOTO…
Jordi
  • 91
  • 1
  • 3
9
votes
2 answers

How to import multiple .vcf file programmatically in android?

I have multiple vcf files in my sdcard. I want import those vcf files into my contacts. I am using the below code : File file = new File(storage_path); Intent intent = new Intent(Intent.ACTION_VIEW); …
Siri
  • 701
  • 1
  • 6
  • 27
8
votes
1 answer

Associate file types for vcard with an iPhone application

I have done following changes in my info.plist file CFBundleDocumentTypes CFBundleTypeName Visiting Card CFBundleTypeIconFiles
AJS
  • 1,403
  • 12
  • 17
8
votes
2 answers

android vcard string to contact

i'm wondering if there's a clean way to import a vcard as an android contact. i have a vcard parser, but mapping each possible vcard field and field type is going to be a painful, bug-prone exercise. is there a better way? an android contact looks…
Jeffrey Blattman
  • 22,176
  • 9
  • 79
  • 134
8
votes
7 answers

How to import multiple contacts vCard VCF file into Outlook?

I have multiple contacts vCard VCF file created on my Android device and I would like to import it to Outlook 2010. It seems that Outlook doesn't support multiple contacts VCF file and import just first contact from such file. Is there any way to…
hoggar
  • 3,699
  • 5
  • 31
  • 41
8
votes
2 answers

Creating a multiple phone vCard using vObject

im using vObject to create a vCard. Everything works well except I can't add multiple phone numbers. Right now i'm doing this: v.add('tel') v.tel.type_param = 'WORK' v.tel.value = employee.office_phone v.add('tel') v.tel.type_param =…
Emmet Brown
  • 456
  • 6
  • 21
8
votes
2 answers

Android how to send multiple contacts are attached in single .vcf file and send to mail?

In my application, a number of contacts are attached to single .vcf file and that file sent to mail, try to this one all contacts data display in log cat, but unable to send all data attached to single .vcf file? Anyone have an idea regarding this…
NagarjunaReddy
  • 8,621
  • 10
  • 63
  • 98
7
votes
2 answers

Python Library to Generate VCF Files?

Know of any good libraries for this? I did some searches and didn't come across anything. Someone somewhere must have done this before, I hate to reinvent the wheel.
Greg
  • 45,306
  • 89
  • 231
  • 297
7
votes
1 answer

Share contact book from java application with CardDAV

I want to share with my colleagues a contact book, created with and used/managed by our application. We thought to share the contacts with our phones via CardDAV protocol. Is there any well documented Library which implements the CardDAV protocol…
Marco Capoferri
  • 224
  • 2
  • 12
6
votes
5 answers

How to save contact info from vCard into iPhone's Contacts App

In my iPhone app, I want to save the vCards into my iPhone's Contacts when I click onto the vCard which I have. How can I do that? I have seen an app on app store which does this: http://itunes.apple.com/us/app/read-vcard/id402216831?mt=8 Thanks
Parth Bhatt
  • 19,381
  • 28
  • 133
  • 216
6
votes
1 answer

Redirecting a URL to QR code data (.vcf / VCARD) - i.e., not a URL

I've accidentally made (and distributed) a QR code to a URL (important: not a VCARD data set like below). So now I need to redirect visits from the URL "directly" to the VCARD data: BEGIN:VCARD VERSION:3.0 N:Doe;John; FN:John…
6
votes
0 answers

How to set download filename on Google Chrome for iOS by javascript

I could not manage to work the download attribute when downloading vcards via data URL by Chrome on IOS. I use code below function download(filename, text) { var element = document.createElement('a'); element.setAttribute('href',…
qwelp
  • 111
  • 7
1
2
3
46 47