iOS アプリや macOS アプリに Google ログインを統合する

このページでは、Google ログインを iOS アプリまたは macOS アプリに統合する方法について説明します。 この手順は、アプリのライフサイクルや UI モデルに合わせて調整する必要が生じる場合があります。

始める前に

依存関係をダウンロードし、Xcode プロジェクトを構成して、クライアント ID を設定します

iOS と macOS のサンプルアプリでログインの仕組みを試してみる

1. 認証リダイレクト URL を処理する

iOS: UIApplicationDelegate

AppDelegate の application:openURL:options メソッドで、GIDSignInhandleURL: メソッド:

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

  1. アプリの 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];
    }
    
  2. GIDSignInhandleURL を呼び出す以下のイベントのハンドラを定義します。

    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 アプリでは多くの場合、UIApplicationDelegateapplication:didFinishLaunchingWithOptions: メソッドと macOS アプリ用の NSApplicationDelegateapplicationDidFinishLaunching:。使用 その結果に基づいて、ユーザーに表示するビューを決定します。例:

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 を使用している場合は、onAppearrestorePreviousSignIn の呼び出しを追加して、 初期ビュー:

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 の使用

  1. SwiftUI の「Google でログイン」の依存関係が追加されていることを確認します。ボタン 追加します。

  2. SwiftUI ボタンを追加するファイルで、必要なインポートをファイルの先頭に追加します。

    import GoogleSignInSwift
    
  3. 「Google でログイン」を追加するビューに追加して、操作するアクションを : ボタンが押されたときに呼び出されます。

    GoogleSignInButton(action: handleSignInButton)
    
  4. ボタンが押されたときにログイン プロセスをトリガーするために、 GIDSignInsignIn(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 を使用する

  1. 「Google でログイン」を追加する] ボタンをログインビューに追加します。こちらの GIDSignInButton クラスを使用して、Google でボタンを自動的に生成する ブランディングを行うか(推奨)、スタイルをカスタマイズして独自のボタンを作成します。

    ストーリーボードまたは XIB ファイルに GIDSignInButton を追加するには、ビューを追加して そのカスタムクラスを GIDSignInButton に設定します。なお、 GIDSignInButton ストーリーボードを表示する(ログインボタンが表示されない) です。アプリを実行してログインボタンを確認します。

    GIDSignInButton の外観は、 colorScheme プロパティと style プロパティ:

    GIDSignInButton スタイル プロパティ
    colorScheme kGIDSignInButtonColorSchemeLight
    kGIDSignInButtonColorSchemeDark
    style kGIDSignInButtonStyleStandard
    kGIDSignInButtonStyleWide
    kGIDSignInButtonStyleIconOnly
  2. 次の呼び出しを行う 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. ログアウト ボタンを追加する

  1. ログイン ユーザーに表示されるログアウト ボタンをアプリに追加します。

  2. 次の呼び出しを行う ViewController のメソッドに、ボタンを接続します signOut:。たとえば、IBAction を使用します。

    Swift

    @IBAction func signOut(sender: Any) {
      GIDSignIn.sharedInstance.signOut()
    }
    

    Objective-C

    - (IBAction)signOut:(id)sender {
      [GIDSignIn.sharedInstance signOut];
    }
    

次のステップ

ユーザーが Google アカウントを使用してアプリにログインできるようになりました。次は、 これを、次のように変更します。