使用Parse SDK 1.9.1和Facebook 4.8.0我没有收到任何回调,我的完成块永远不会被执行。我在AppDelegate中拥有所有必需的东西,一切顺利,直到我升级了我的sdks。
我的代码中的示例:
if (![PFUser currentUser]) {
NSLog(@"!PFUser current user");
NSArray *permissions = @[@"public_profile", @"email", @"user_friends"];
[PFFacebookUtils logInInBackgroundWithReadPermissions:permissions block:^(PFUser *user, NSError *error) {
NSLog(@"User:%@",[user description]);
if (!user) {
NSLog(@"Uh oh. The user cancelled the Facebook login.");
NSLog(@"Uinfo :%@",[error userInfo][@"error"]);
} else if (user.isNew) {
NSLog(@"User signed up and logged in through Facebook!");
[self updateUiForLoggedInUser];
[self updateInstallationChannels];
} else {
NSLog(@"User logged in through Facebook!");
[self updateUiForLoggedInUser];
[self updateInstallationChannels];
}
if (error) {
NSLog(@"Error trying to login:%@",[error description]);
}
}];
}
还有:
if (![PFFacebookUtils isLinkedWithUser:[PFUser currentUser]]) {
[PFFacebookUtils linkUserInBackground:[PFUser currentUser] withReadPermissions:nil block:^(BOOL succeeded, NSError *error) {
if (succeeded) {
NSLog(@"Woohoo, user is linked with Facebook!");
}
}];
}
知道为什么吗? 提前谢谢!
编辑:我尝试移动PFFacebookUtils logInInBackgroundWithReadPermissions: 到另一个viewcontroller,它工作正常。知道为什么它不能在MainViewController上工作吗?
答案 0 :(得分:0)
我明白了。 Dunno为什么会这样,但似乎对FBFacebookUtils的请求现在不是异步的...我在loginInBackground之后调用了linkUserInBackground,我得到的响应仅用于linkUserInBackground。将这两种方法分开后,一切运行良好。