Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem. I'm making an app in ios 6 that get contacts from my address book but if i have enabled the contacts option with facebook get all my contacts from my address book and from facebook and i would like if there is possible with code dont get facebook contacts. Only solutions that i thougth is or merge contacts with the same name or delete the contacts that have an email with @facebook.com.

Other solution?

share|improve this question

1 Answer

Checking for a @facebook.com email address is not reliable. Users can choose to not publish that and non-facebook address book entries could have that as their email address.

There is a special field in the address book called ExternalRepresentation that seems to carry some extra info about synced from facebook contacts. The first part of this always seems to be the same.

WARNING: This may not work all the time and probably will break someday in the future. This is undocumented.

static NSData *facebookExtRepPrefix = [NSData dataWithBytes:"bplist00\xd4\x01\x02\x03" length:12];
#define kABPersonExternalRepresentationProperty 39

then

NSData *extRep = (__bridge NSData *)ABRecordCopyValue(theRecord, kABPersonExternalRepresentationProperty);
BOOL isFacebook = [[extRep subdataWithRange:NSMakeRange(0, facebookExtRepPrefix.length)] isEqualToData:facebookExtRepPrefix];

you can then read the kABPersonPersonLinkProperty (#42) - that value will be the same on the native contact that is linked to it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.