我收到此错误:
错误 Domain=com.apple.accounts Code=7 “Facebook 服务器无法完成此访问请求:代理的应用程序尚未安装。” UserInfo=0x114a7440 {NSLocalizedDescription=Facebook 服务器无法完成此访问请求:代理的应用程序尚未安装。}
我正在使用此代码获取访问权限:
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
[accountStore requestAccessToAccountsWithType:accountType options:[[NSDictionary alloc] initWithObjectsAndKeys:
@"MY APP ID", ACFacebookAppIdKey,
nil, ACFacebookPermissionsKey,
nil] completion:^(BOOL granted, NSError *error) {
if (granted == YES) {
//My code
} else {
NSLog(@"No Facebook access: %@", error.debugDescription);
}
}];
我该如何解决?