作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在使用 FBTestSession *fbSession = [FBTestSession sessionWithSharedUserWithPermissions:@[@"email"]];
如果您查看下面的代码,您会发现 Facebook 决定从 NSProcessInfo 加载应用设置: https://github.com/facebook/facebook-ios-sdk/blob/master/src/FBTestSession.m#L506
NSDictionary *environment = [[NSProcessInfo processInfo] environment];
NSString *appID = [environment objectForKey:FBPLISTAppIDKey];
NSString *appSecret = [environment objectForKey:FBPLISTAppSecretKey];
if (!appID || !appSecret || appID.length == 0 || appSecret.length == 0) {
[[NSException exceptionWithName:FBInvalidOperationException
reason:
@"FBTestSession: Missing App ID or Secret; ensure that you have an .xcconfig file at:\n"
@"\t${REPO_ROOT}/src/tests/TestAppIdAndSecret.xcconfig\n"
@"containing your unit-testing Facebook Application's ID and Secret in this format:\n"
@"\tIOS_SDK_TEST_APP_ID = // your app ID, e.g.: 1234567890\n"
@"\tIOS_SDK_TEST_APP_SECRET = // your app secret, e.g.: 1234567890abcdef\n"
@"To create a Facebook AppID, visit https://developers.facebook.com/apps"
userInfo:nil]
raise];
}
问题是,我不知道如何正确设置 FBPLISTAppIDKey 和 FBPLISTAppSecretKey,也没有其他 setter 可供使用。
最佳答案
您需要将它们作为环境变量添加到您的方案中。
{scheme} >> Run >> Arguments (Tab) >> add the test app id and test app secret.
关于ios - 如何使用 FBTestSession 设置 FBPLISTAppIDKey 和 FBPLISTAppSecretKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15570013/
在使用 FBTestSession *fbSession = [FBTestSession sessionWithSharedUserWithPermissions:@[@"email"]]; 时,我
我是一名优秀的程序员,十分优秀!