gpt4 book ai didi

ios - ACAccountStore 请求AccessToAccountsWithType :options:completion: returning nil error and granted as NO

转载 作者:可可西里 更新时间:2023-11-01 04:59:02 24 4
gpt4 key购买 nike

我正在尝试使用 ACAccountStore 进行登录测试,但效果不是很好。

我正在尝试像这样访问该帐户:

ACAccountStore *store = [ACAccountStore new];

ACAccountType *accountType = [store accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];

NSDictionary *options = @{
ACFacebookAppIdKey:@"12345678987654",
ACFacebookPermissionsKey:@[@"email"]
};

[store requestAccessToAccountsWithType:accountType
options:options
completion:^(BOOL granted, NSError *error)
{
NSLog(@"Access Granted: %d", granted);
NSLog(@"Error: %@", error);
}];

但是,我的输出是这样的:

2013-09-30 16:58:08.084 Application[1009:1103] Access Granted: 0
2013-09-30 16:58:08.090 Application[1009:1103] Error: (null)

我已确保我在 developers.facebook 网站上的“Bundle ID”与我的应用程序的 Bundle Identifier 匹配。我还启用了“沙盒模式”。这就是我所需要的,对吧?出了什么问题?

此外,只是为了提供有关该应用程序的更多信息,该应用程序是最基本的。这是一个带有一个 View Controller 的空应用程序,它显示一个带有一个目标的按钮,该目标运行我在上面编写的代码。这就是应用程序的全部内容。

最佳答案

检查 developer.facebook.com 以查看您的应用程序是否已沙盒化。如果您的应用程序是沙盒并且您正在使用另一个 Facebook 帐户进行测试,则授予将为否。

关于ios - ACAccountStore 请求AccessToAccountsWithType :options:completion: returning nil error and granted as NO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19103809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com