无法使用Facebook凭据登录

时间:2015-08-17 09:44:03

标签: ios objective-c facebook parse-platform

我使用FacebookSDK和ParseSDK注册了用户。之后我试图在帮助下登录 使用已注册用户的Facebook凭据 logInWithUsernameInBackground

- (IBAction)loginButtonPressed:(id)sender {
    NSString * login =_emailTextField.text;
    NSString * pas = _passwordTextField.text;

    [PFUser logInWithUsernameInBackground:login password:pas
                                    block:^(PFUser *user, NSError *error) {
                                        if (user) {
                                            MasterViewController *viewController = [self.navigationController.storyboard instantiateViewControllerWithIdentifier:@"LibraryTableView"];
                                            [self.navigationController pushViewController:viewController animated:NO];                                  
                                        } else {
                                             NSLog(@"Wrong log in");

                                        }
                                    }];
}

但是我收到错误

  

[错误]:登录参数无效(代码:101,版本:1.7.5)

你能帮我吗?

0 个答案:

没有答案