我正在尝试为IOS制作一个多用户应用。我遇到了谷歌+的问题。
在signOut之后,如果我再次尝试登录,它仍然拥有我的用户数据并跳转到权限视图,而无需为新身份验证请求电子邮件和密码。
我已经使用了disconnect()和signOut(),仍然会跳转到权限视图。
signOut按钮的代码:
GPPSignIn.sharedInstance().signOut()
或者:
// Disconnects the user from the app and revokes previous authentication.
// If the operation succeeds, the OAuth 2.0 token is also removed from keychain.
// The token is needed to disconnect so do not call |signOut| if |disconnect| is
// to be called.
GPPSignIn.sharedInstance().disconnect()
btw:其他所有东西都有效(通过应用分享帖子,一个好的GPPSignIn.sharedInstance)
关注AdS