我正在使用此代码进行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简单登录信息,请参阅链接。
先谢谢。
答案 0 :(得分:0)
最后,我使用OAuth 2.0 protocol
得到了解决方案。
Reference
:http://technogerms.com/login-with-google-using-oauth-2-0-for-ios-xcode-objective-c/
Source code
:https://github.com/emysa341/Login-with-gmail-google-g--using-oath-2.0-protocol
答案 1 :(得分:-2)
按照以下链接。这很简单,也很好描述 https://developers.google.com/+/mobile/ios/sign-in 并且对于您的代码,您没有创建客户端ID。点击链接,演示如何创建客户端ID和所有剩余步骤。