Home

How to make vCard QR Codes that are compatible with iPhone, Android and Blackberry

Published on 4/12/2011


I’ve been working on a web page where you can scan a company’s vCard easily on your smartphone and have it saved to your contact list. It’s definitely a pain in the ass. Here is a sample QR code with a vCard in it:

Here are some tips:

Young, bored, and know Java? Please write a decent QR code reader for blackberry :)

Here is a vCard that I tested with Windows 7, Blackberry 6, iPhone 4 and Android 2.3.3

BEGIN:VCARD

VERSION:2.1

N:;Company Name

FN:Company Name

ORG:Company Name

TEL;WORK;VOICE;PREF:+16045551212

TEL;WORK;FAX:+16045551213

ADR;WORK;POSTAL;PARCEL;DOM;PREF:;;123 main street;vancouver;bc;v0v0v0;canada

EMAIL;INTERNET;PREF:[email protected]

URL;WORK;PREF:http://www.example.com/

NOTE:http://www.example.com/

CATEGORIES:BUSINESS,WORK

UID:A64440FC-6545-11E0-B7A1-3214E0D72085

REV:20110412165200

END:VCARD

UID should uniquely identify the contact (use a guid), and REV should identify the revision (just use the date+time)

... views