我正在尝试实现 google plus 集成,登录工作正常,问题是登录后没有输入 - (void)finishedWithAuth
我的 coe 如下:
GPPSignIn *signIn = [GPPSignIn sharedInstance];
signIn.clientID = @"CLIENT_ID";
signIn.scopes = [NSArray arrayWithObjects:
kGTLAuthScopePlusLogin,
nil];
signIn.delegate = self;
已声明 GPPSignInDelegate 委托(delegate)
最佳答案
这是检查回调网址的问题,请检查 appdelegate 中的重定向网址
关于ios - 委托(delegate)不适用于 google plus 集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16515207/