美文网首页
iOS Google 登录

iOS Google 登录

作者: 那根经痛了 | 来源:发表于2020-07-21 17:04 被阅读0次

    使用手动拖入Google 登录SDK 方式接入

    开发者平台:https://console.firebase.google.com/

    资源下载地址:https://developers.google.cn/identity/sign-in/ios/sdk/

    1. 开发者平台 - 登录/注册账号 - 添加项目 - 输入项目名称 - 点击继续…

    2. 点击iOS - 进入注册应用页面

    3. 点击注册应用

    4. 下载plist文件,并拖入项目中

    注:plist文件中已包含Google 登录ID与URL Types

    5. 跳过第三、四、五步骤(添加 Firebase SDK),点击下一步

    6. 跳过验证安装

    7. 下载资源:https://developers.google.cn/identity/sign-in/ios/sdk/

    8. 将SDK添加到您的Xcode项目

    9. 添加依赖库

    10. 将ObjC链接器标志添加 到应用程序目标的构建设置中

    11. 配置URL Types

    打开项目中的 GoogleService-Info.plist,复制REVERSED_CLIENT_ID Value,填入URL Types

    代码实现步骤参考:https://developers.google.cn/identity/sign-in/ios/sign-in

    12. 代码调试AppDelegate.m 文件配置      

            1)导入头文件:import GoogleSignIn

            2)设置clientID:GIDSignIn.sharedInstance()?.clientID = "打开项目中的 GoogleService-Info.plist,复制CLIENT_ID Value"

            3)遵循协议:GIDSignInDelegate

            4)设置代理:GIDSignIn.sharedInstance()?.delegate = self

            5)实现代理方法:sign(_signIn:, didSignInFor user:,withError error:)

            6)实现application:openURL:options: 

                   return (GIDSignIn.sharedInstance()?.handle(url))!

    13. 控制器实现(参考:https://developers.google.cn/identity/sign-in/ios/sign-in)

            1)导入头文件:import GoogleSignIn

            2)viewDidLoad中设置:GIDSignIn.sharedInstance()?.presentingViewController = self

            3)viewDidLoad中 自动登录:[[ GIDSignIn sharedInstance ] restorePreviousSignIn ];

                   历史无登录/已退出登录,回调状态为:GIDSignInErrorCode.hasNoAuthInKeychain

            4)拉起登录

                    a. 自定义按钮样式

                        按钮事件中调用:GIDSignIn.sharedInstance()?.signIn()

                    b. 使用Google SDK 中自带的GIDSignInButton 

                        xib:拖入UIView,将UIView的Class 改成GIDSignInButton

    14. 进入调试

     简单记录接入过程

    相关文章

      网友评论

          本文标题:iOS Google 登录

          本文链接:https://www.haomeiwen.com/subject/zqnikktx.html