Google 登录 iOS
复制一个包含安装步骤和本插件的完整 Markdown 指南的设置提示。
在本指南中,您将学习如何在 iOS 设备上设置 Google 登录和 Capgo 社交登录。 已阅读通用设置指南.
使用 Google 登录在 iOS 设备上
Section titled “在 iOS 设备上使用 Google 登录”在本部分中,您将学习如何在 iOS 设备上设置 Google 登录。
-
在 Google 控制台中创建一个 iOS 客户端 ID
-
点击搜索栏
-
在搜索栏中输入
credentials并点击第二个结果(截图中的第 2 项)APIs and ServicesGoogle Console search bar
-
点击 Google Console 中的
create credentials
-
选择
OAuth client ID
-
选择
Application type到iOS
-
找到 bundle ID
-
打开 Xcode
-
双击 Xcode 项目导航器中的
App
-
确保您已在
Targets -> App
-
找到您的
Bundle Identifier
-
返回Google控制台并将您的
Bundle Identifier输入Bundle ID
-
-
可选地,添加您的
App Store ID或Team ID如果您已发布应用程序到App Store,则将其输入到客户端ID中 -
填写所有详细信息后,点击
create
-
点击
OK
-
打开刚创建的 iOS 客户端
-
复制以下数据
-
-
修改您的应用程序的Info.plist
-
打开Xcode并找到
Info.plist文件
-
右键单击此文件并以源代码code打开
-
您的文件底部
Plist您将看到一个</dict>标签
-
在关闭标签之前,插入以下片段
</dict>标签
<key>CFBundleURLTypes</key><array><dict><key>CFBundleURLSchemes</key><array><string>YOUR_DOT_REVERSED_IOS_CLIENT_ID</string></array></dict></array> -
将其更改为上一步中复制的值
YOUR_DOT_REVERSED_IOS_CLIENT_IDInfo.plist文件中,实际反转的客户端ID插入到URL方案中
-
保存文件时
Command + S
-
-
修改
AppDelegate.swift-
打开AppDelegate
-
插入
import GoogleSignIn在AppDelegate.swift文件顶部添加GoogleSignIn导入语句
-
函数
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:])AppDelegate中的原始应用程序openURL函数
-
复制到剪贴板
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {// Called when the app was launched with a url. Feel free to add additional processing here,// but if you want the App API to support tracking app url opens, make sure to keep this callvar handled: Boolhandled = GIDSignIn.sharedInstance.handle(url)if handled {return true}return ApplicationDelegateProxy.shared.application(app, open: url, options: options)}
-
保存文件
Command + S
-
-
Setup Google login in your JavaScript/TypeScript code
-
导入
SocialLogin并Capacitorimport { SocialLogin } from '@capgo/capacitor-social-login';import { Capacitor } from '@capacitor/core'; -
调用初始化方法(应只调用一次)
基本设置(在线模式-大多数应用程序推荐)
// onMounted is Vue specificonMounted(() => {SocialLogin.initialize({google: {iOSClientId: '673324426943-redacted.apps.googleusercontent.com',mode: 'online' // Default mode}})})高级设置:附加客户端ID
onMounted(() => {SocialLogin.initialize({google: {webClientId: 'YOUR_WEB_CLIENT_ID', // Optional: for web platform supportiOSClientId: 'YOUR_IOS_CLIENT_ID', // Required: from step 1iOSServerClientId: 'YOUR_WEB_CLIENT_ID', // Optional: same as webClientId, needed for some advanced featuresmode: 'online' // 'online' or 'offline'}})}) -
实现登录功能。创建一个按钮并在点击时运行以下code
在线模式:
const res = await SocialLogin.login({provider: 'google',options: {}})// handle the response - contains user dataconsole.log(JSON.stringify(res))离线模式:
const res = await SocialLogin.login({provider: 'google',options: {forceRefreshToken: true // Recommended for offline mode}})// res contains serverAuthCode, not user data// Send serverAuthCode to your backend to get user information// Do not call SocialLogin.refresh() in offline modeconsole.log('Server auth code:', res.result.serverAuthCode)
-
-
测试您的应用
-
构建您的应用并运行
cap sync -
如果您已经正确完成了所有步骤,您应该看到Google登录流程正常工作
-
已知问题
名为“已知问题”的部分隐私屏幕插件不兼容性
名为“隐私屏幕插件不兼容性”的部分Google 登录插件与 @capacitor/privacy-screen不兼容。当同时使用这两个插件时,Google 登录 webview 将被隐私屏幕中断。
解决方法: 在调用登录函数之前 await PrivacyScreen.disable(); 复制到剪贴板
import { PrivacyScreen } from '@capacitor/privacy-screen';import { SocialLogin } from '@capgo/capacitor-social-login';
await PrivacyScreen.disable();await SocialLogin.login({ provider: 'google', options: {}});如果您正在使用 Google iOS 登录 来规划身份验证和帐户流程,连接它到 使用 @capgo/capacitor 社交登录 为 @capgo/capacitor 社交登录中的本机能力 @capgo/capacitor 社交登录 为 @capgo/capacitor 社交登录中的实现细节 @capgo/capacitor-passkey 为 @capgo/capacitor-passkey 中的实现细节 @capgo/capacitor-native-biometric 为 @capgo/capacitor-native-biometric 中的实现细节 双因素验证 双因素验证的实现细节。