我正在尝试按照 https://developers.facebook.com/docs/howtos/login-with-facebook-using-ios-sdk/文档获取访问令牌以代表用户访问 facebook 服务。
在我添加后 - (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error
和
    - (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
    return [FBSession openActiveSessionWithReadPermissions:nil
                                          allowLoginUI:allowLoginUI
                                     completionHandler:^(FBSession *session,
                                                         FBSessionState state,
                                                         NSError *error) {
                                         [self sessionStateChanged:session
                                                             state:state
                                                             error:error];
                                     }];
    }
我得到(空):“_ACFacebookAppIdKey”,引用自:ERROR,它们是其中的 24 个。我不确定到底发生了什么。
有人可以帮我解决这个问题吗?
谢谢