I am accessing custom facebook via:
[accStore requestAccessToAccountsWithType:fbAccountType options:options completion:^(BOOL granted, NSError *error) { if (granted) { // If access granted, then get the Facebook account info NSArray *accounts = [accStore accountsWithAccountType:fbAccountType]; ACAccount *acc = [accounts lastObject]; // Get the access token, could be used in other scenarios ACAccountCredential *fbCredential = [acc credential]; NSString *accessToken = [fbCredential oauthToken]; NSLog(@"Facebook Access Token: %@", accessToken); // Add code here to make an API request using the SLRequest class } else { NSLog(@"Access not granted"); } }];
This produces:
Facebook Access Token: (null)
I have been granted access, but the token is zero. What am I doing wrong?
thanks
source share