このページでは、Google ログインを iOS アプリまたは macOS アプリに統合する方法について説明します。 この手順は、アプリのライフサイクルや UI モデルに合わせて調整する必要が生じる場合があります。
始める前に
依存関係をダウンロードし、Xcode プロジェクトを構成して、クライアント ID を設定します。
iOS と macOS のサンプルアプリでログインの仕組みを試してみる。
1. 認証リダイレクト URL を処理する
iOS: UIApplicationDelegate
AppDelegate の application:openURL:options
メソッドで、GIDSignIn
の
handleURL:
メソッド:
Swift
func application(
_ app: UIApplication,
open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]
) -> Bool {
var handled: Bool
handled = GIDSignIn.sharedInstance.handle(url)
if handled {
return true
}
// Handle other custom URL types.
// If not handled by this app, return false.
return false
}
Objective-C
- (BOOL)application:(UIApplication *)app
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
BOOL handled;
handled = [GIDSignIn.sharedInstance handleURL:url];
if (handled) {
return YES;
}
// Handle other custom URL types.
// If not handled by this app, return NO.
return NO;
}
macOS: NSApplicationDelegate
アプリの AppDelegate で、
kAEGetURL
イベントのハンドラをapplicationDidFinishLaunching
:Swift
func applicationDidFinishLaunching(_ notification: Notification) { // Register for GetURL events. let appleEventManager = NSAppleEventManager.shared() appleEventManager.setEventHandler( self, andSelector: "handleGetURLEvent:replyEvent:", forEventClass: AEEventClass(kInternetEventClass), andEventID: AEEventID(kAEGetURL) ) }
Objective-C
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Register for GetURL events. NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager]; [appleEventManager setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; }
GIDSignIn
のhandleURL
を呼び出す以下のイベントのハンドラを定義します。Swift
func handleGetURLEvent(event: NSAppleEventDescriptor?, replyEvent: NSAppleEventDescriptor?) { if let urlString = event?.paramDescriptor(forKeyword: AEKeyword(keyDirectObject))?.stringValue{ let url = NSURL(string: urlString) GIDSignIn.sharedInstance.handle(url) } }
Objective-C
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent { NSString *URLString = [[event paramDescriptorForKeyword:keyDirectObject] stringValue]; NSURL *URL = [NSURL URLWithString:URLString]; [GIDSignIn.sharedInstance handleURL:url]; }
SwiftUI
アプリのウィンドウまたはシーンで、URL を受け取り、
GIDSignIn
さんの handleURL
:
Swift
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
// ...
.onOpenURL { url in
GIDSignIn.sharedInstance.handle(url)
}
}
}
}
2. ユーザーのログイン ステータスの復元を試みる
アプリの起動時に restorePreviousSignInWithCallback
を呼び出して、
すでに Google を使用してログインしているユーザーのログイン状態を復元する。そうすることで、
アプリを開くたびにログインする必要がありません(ただし、
できます)。
iOS アプリでは多くの場合、UIApplicationDelegate
の
application:didFinishLaunchingWithOptions:
メソッドと
macOS アプリ用の NSApplicationDelegate
の applicationDidFinishLaunching:
。使用
その結果に基づいて、ユーザーに表示するビューを決定します。例:
Swift
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GIDSignIn.sharedInstance.restorePreviousSignIn { user, error in
if error != nil || user == nil {
// Show the app's signed-out state.
} else {
// Show the app's signed-in state.
}
}
return true
}
Objective-C
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GIDSignIn.sharedInstance restorePreviousSignInWithCompletion:^(GIDGoogleUser * _Nullable user,
NSError * _Nullable error) {
if (error) {
// Show the app's signed-out state.
} else {
// Show the app's signed-in state.
}
}];
return YES;
}
SwiftUI
SwiftUI を使用している場合は、onAppear
に restorePreviousSignIn
の呼び出しを追加して、
初期ビュー:
Swift
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
ContentView()
// ...
.onAppear {
GIDSignIn.sharedInstance.restorePreviousSignIn { user, error in
// Check if `user` exists; otherwise, do something with `error`
}
}
}
}
}
3. Google ログインボタンを追加する
「Google でログイン」を追加する] ボタンをログインビューに追加します。 コンポーネントは SwiftUI と UIKit で利用できます。 ボタンに Google のブランディングが表示されているため、使用することをおすすめします。
SwiftUI の使用
SwiftUI ボタンを追加するファイルで、必要なインポートをファイルの先頭に追加します。
import GoogleSignInSwift
「Google でログイン」を追加するビューに追加して、操作するアクションを : ボタンが押されたときに呼び出されます。
GoogleSignInButton(action: handleSignInButton)
ボタンが押されたときにログイン プロセスをトリガーするために、
GIDSignIn
のsignIn(presentingViewController:completion:)
メソッド アクション:func handleSignInButton() { GIDSignIn.sharedInstance.signIn( withPresenting: rootViewController) { signInResult, error in guard let result = signInResult else { // Inspect error return } // If sign in succeeded, display the app's main content View. } ) }
これは、標準のスタイル情報を提供するデフォルトのビューモデルを使用します。
クリックします。ボタンの外観を制御するには、カスタム ディメンションを作成し、
GoogleSignInButtonViewModel
し、ボタンのviewModel
GoogleSignInButton(viewModel: yourViewModel, action:
yourAction)
を使用するイニシャライザ。詳しくは、
GoogleSignInButtonViewModel
ソースコード
をご覧ください。
UIKit を使用する
「Google でログイン」を追加する] ボタンをログインビューに追加します。こちらの
GIDSignInButton
クラスを使用して、Google でボタンを自動的に生成する ブランディングを行うか(推奨)、スタイルをカスタマイズして独自のボタンを作成します。ストーリーボードまたは XIB ファイルに
GIDSignInButton
を追加するには、ビューを追加して そのカスタムクラスをGIDSignInButton
に設定します。なお、GIDSignInButton
ストーリーボードを表示する(ログインボタンが表示されない) です。アプリを実行してログインボタンを確認します。GIDSignInButton
の外観は、colorScheme
プロパティとstyle
プロパティ:GIDSignInButton スタイル プロパティ colorScheme
kGIDSignInButtonColorSchemeLight
kGIDSignInButtonColorSchemeDark
style
kGIDSignInButtonStyleStandard
kGIDSignInButtonStyleWide
kGIDSignInButtonStyleIconOnly
次の呼び出しを行う ViewController のメソッドに、ボタンを接続します
signIn:
。たとえば、IBAction
を使用します。Swift
@IBAction func signIn(sender: Any) { GIDSignIn.sharedInstance.signIn(withPresenting: self) { signInResult, error in guard error == nil else { return } // If sign in succeeded, display the app's main content View. } }
Objective-C
- (IBAction)signIn:(id)sender { [GIDSignIn.sharedInstance signInWithPresentingViewController:self completion:^(GIDSignInResult * _Nullable signInResult, NSError * _Nullable error) { if (error) { return; } // If sign in succeeded, display the app's main content View. }]; }
4. ログアウト ボタンを追加する
ログイン ユーザーに表示されるログアウト ボタンをアプリに追加します。
次の呼び出しを行う ViewController のメソッドに、ボタンを接続します
signOut:
。たとえば、IBAction
を使用します。Swift
@IBAction func signOut(sender: Any) { GIDSignIn.sharedInstance.signOut() }
Objective-C
- (IBAction)signOut:(id)sender { [GIDSignIn.sharedInstance signOut]; }
次のステップ
ユーザーが Google アカウントを使用してアプリにログインできるようになりました。次は、 これを、次のように変更します。
- ユーザーのGoogle アカウントのプロフィール情報。
- ユーザーの Google ID を使用してバックエンドで認証する あります。
- ユーザーに代わって Google API を呼び出します。