Skip to content

Instantly share code, notes, and snippets.

View kristersj's full-sized avatar

Kristers Jursevskis kristersj

View GitHub Profile
@kristersj
kristersj / get_friend_list.m
Last active December 30, 2015 09:29 — forked from kyktommy/get_friend_list.m
Ability to get more than just the name and id. - Get friends location, picture.
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *facebookAccountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
id options = @{
ACFacebookAppIdKey: @"403376439767549",
ACFacebookPermissionsKey: @[ @"email", @"read_friendlists", @"friends_location"],
ACFacebookAudienceKey: ACFacebookAudienceFriends
};
[accountStore requestAccessToAccountsWithType:facebookAccountType
options:options
completion:^(BOOL granted, NSError *error) {