I can read Facebook friends first name, lastname, birthday ... but I am unable to read the Facebook username ID from my address book.
If the Facebook detail is on my phone's addressbook it is reading fine but not if it is from the CardDAV server.
If I go to the Addressbook on the phone/simulator I can see the usernames... so they are available.
I have read_stream, email, read_friendlists, publish_stream, publish_actions permissions.
Please help... I have run out of ideas
iOS6, XCode 4.5, Facebook SDK 3.1
// Extract
// These all return values
CFStringRef cfsPrefix = ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonPrefixProperty);
CFStringRef cfsFirstname = ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonFirstNameProperty);
CFStringRef cfsLastname = ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonLastNameProperty);
CFStringRef cfsCompany = ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonOrganizationProperty);
NSDate* datBirthday = (NSDate*) CFBridgingRelease(ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonBirthdayProperty));
NSDate* datCreate = (NSDate*) CFBridgingRelease(ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonCreationDateProperty));
NSDate* datModify = (NSDate*) CFBridgingRelease(ABRecordCopyValue((__bridge ABRecordRef)recPerson, kABPersonModificationDateProperty));
// This never returns a value in strFacebook
NSString *strFacebook;
ABMultiValueRef socialMulti = ABRecordCopyValue((__bridge ABRecordRef) recPerson, kABPersonSocialProfileProperty);
// ABMultiValueGetCount(socialMulti) always returns 0 ?
for (CFIndex i = 0; i < ABMultiValueGetCount(socialMulti); i++) {
NSDictionary* social = (__bridge NSDictionary*)ABMultiValueCopyValueAtIndex(socialMulti, i);
if ([social[@"service"] isEqualToString:(__bridge NSString*)kABPersonSocialProfileServiceFacebook]) {
strFacebook = (NSString*)social[@"username"];
NSLog(@"we got a facebook. username is %@ %@", [self nameForSource:(__bridge ABRecordRef)recPerson], cFacebook);
}
}