在我的应用程序中,我可以选择使用 google plus 登录应用程序。登录工作正常。我无法从 google+ 注销。当我点击登录按钮时,它不会显示登录页面,它会重定向到身份验证对话框页面。
我的代码是:
登录
GPPSignIn *signIn = [GPPSignIn sharedInstance];
signIn.shouldFetchGooglePlusUser = YES;
signIn.shouldFetchGoogleUserEmail = YES;
signIn.shouldFetchGoogleUserID= YES;
signIn.clientID = kClientId;
signIn.scopes = [NSArray arrayWithObjects:kGTLAuthScopePlusLogin,nil];
signIn.delegate = self;
注销
- (IBAction)Logout:(id)sender {
[[GPPSignIn sharedInstance] signOut];
[[GPPSignIn sharedInstance] disconnect];
}