我已经在 Objective-C iOS 应用程序中集成了谷歌登录,它工作正常,但现在它给出了这个错误一段时间。
这是点击按钮时的登录代码:
[GIDSignIn sharedInstance].uiDelegate = self;
[GIDSignIn sharedInstance].delegate = self;
[[GIDSignIn sharedInstance] setScopes[@"https://www.googleapis.com/auth/contacts.readonly",@"https://www.google.com/m8/feeds/"]];
[[GIDSignIn sharedInstance] signIn];
转成Objective-C后试试这个
GIDSignIn.sharedInstance().delegate = self
GIDSignIn.sharedInstance().uiDelegate = self
GIDSignIn.sharedInstance().scopes.append("https://www.googleapis.com/auth/plus.stream.read")
GIDSignIn.sharedInstance().scopes.append("https://www.googleapis.com/auth/plus.me")
GIDSignIn.sharedInstance().hasAuthInKeychain()
也尝试在每次登录前退出
[[GIDSignIn sharedInstance] signOut];
[[GIDSignIn sharedInstance] signIn];
关于iOS Google 登录不允许用户代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47875273/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |