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 am trying to use the new ACAccountStore capabilities on Mac OS X 10.8 to login via Facebook but I get an error:

The Facebook server could not fulfill this access request: no stored remote_app_id for app

When the code executes the requestAccessToAccountsWithType message it does prompt me for access to Facebook (which I allow) and I do have Facebook credentials stored in my Settings. I also have another code path for legacy versions of OS X which logs into Facebook using the WebView control. It does work with the same APP_ID. So I should have the app correctly setup in the Facebook developer settings. In there some other configuration that I'm missing? I search on the Internet for "remote_app_id" and I get the empty set.

    ACAccountStore *account = [[ACAccountStore alloc] init];
    ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];

    NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: FB_APP_ID, ACFacebookAppIdKey, [NSArray arrayWithObjects:@"email", nil], ACFacebookPermissionsKey, ACFacebookAudienceFriends, ACFacebookAudienceKey, nil];

    [account requestAccessToAccountsWithType:accountType options:options completion:^(BOOL granted, NSError *error) {
        if (granted) {
            NSArray *accountList = [account accountsWithAccountType:accountType];

            for (ACAccount *thisAccount in accountList) {
                NSLog(@"Found account: %@", [thisAccount accountDescription]);
            }
        }
        else {
            NSLog(@"Not granted because: %@", [error localizedDescription]);
        }
    }];
share|improve this question

1 Answer

up vote 9 down vote accepted

Looks like you have to set bundle ID of your iOS/OSX app in Facebook app settings (that fixed thing in my case)

bundleID

share|improve this answer
I'll give that a try, but this is not an iOS app. Was yours? – russwhitney Sep 26 '12 at 20:06
I tried it, but it still has the same behavior and error message. – russwhitney Sep 26 '12 at 20:47
Sorry, I should read more carefully :) Mine is iOS app, but anyway error message is the same, so probably facebook is expecting some ID somewhere in settings.. Ill try to play with that on OS X – lupatus Sep 27 '12 at 1:14
Let me know what you find out. I'm curious, how much of that "Native iOS App" section did you have filled in? It's not clear for an OS X app how to fill in the application settings. Thanks for your help! – russwhitney Sep 27 '12 at 19:31
1  
I made sample osx app and it works for me, here you have screen shot from facebook settings (basic and permissions) and from my code. – lupatus Sep 27 '12 at 22:59
show 6 more comments

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.