Google plus登录无法在iOS应用中使用

时间:2014-01-03 10:39:14

标签: ios objective-c google-plus

我正在使用此代码进行Google Plus登录以访问我的应用。

- (IBAction)GplusAction:(id)sender {

    // Make sure the GPPSignInButton class is linked in because references from
    // xib file doesn't count.
    [GPPSignInButton class];

    GPPSignIn *signIn = [GPPSignIn sharedInstance];
    signIn.shouldFetchGooglePlusUser = YES;
    signIn.shouldFetchGoogleUserEmail = YES;
    signIn.delegate = self;

}

- (void)finishedWithAuth:(GTMOAuth2Authentication *)auth
                   error:(NSError *)error
{
    if (error) {
        NSLog(@"error");
        return;
    }

}

它不会重定向到任何页面。你能帮我解决一下我的问题吗?如果iOS中有任何Google Plus简单登录信息,请参阅链接。

先谢谢。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:-2)

按照以下链接。这很简单,也很好描述 https://developers.google.com/+/mobile/ios/sign-in 并且对于您的代码,您没有创建客户端ID。点击链接,演示如何创建客户端ID和所有剩余步骤。