繁体   English   中英

“GIDSignIn”类型的值没有成员“signInSilently”

[英]Value of type 'GIDSignIn' has no member 'signInSilently'

这是什么错误,请指导到目前为止在谷歌上找不到任何材料。 下面是我的代码,它给出了错误:

if GIDSignIn.sharedInstance().hasAuthInKeychain() == false {
               GIDSignIn.sharedInstance().signIn()
           } else {
               if let user = GIDSignIn.sharedInstance().currentUser {
                   service.authorizer = user.authentication.fetcherAuthorizer()
                   fetchEvents()
               } else {
                   GIDSignIn.sharedInstance().signInSilently()
               }
           }

两个错误来了:

Value of type 'GIDSignIn' has no member 'hasAuthInKeychain'
Value of type 'GIDSignIn' has no member 'signInSilently'

请检查您使用的GIDSignIn版本。 v5.0.0

signInSilently已替换为restorePreviousSignIn

hasAuthInKeychain已替换为hasPreviousSignIn

参考: https : //developers.google.com/identity/sign-in/ios/release

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM