gpt4 book ai didi

ios - 如何使用 FBTestSession 设置 FBPLISTAppIDKey 和 FBPLISTAppSecretKey

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:15:02 24 4
gpt4 key购买 nike

在使用 FBTestSession *fbSession = [FBTestSession sessionWithSharedUserWithPermissions:@[@"email"]];

时,我在使用 FBTestSession 时遇到异常

如果您查看下面的代码,您会发现 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/

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