ios - Firebase UI Auth Provider iOS Swift 示例

标签 ios firebase firebase-authentication firebaseui podfile

我正在启动一个新的 iOS Swift 应用程序并想使用 FirebaseUI Auth。这是文档的链接,它在 Drop-in authentication solution Firebase Auth 下讨论了它.适用于 Android 的 FirebaseUI Auth 非常简单易行。似乎 iOS 示例已过时,因为 API 似乎在版本之间发生了巨大变化。看起来他们的版本是 3.1 .

方向也有点简单:https://github.com/firebase/FirebaseUI-iOS

有人可以帮助我并提供一个用于 facebook 和 google 登录的示例 AppDelegate 和 ViewController 吗?

我正在使用 Xcode 8.3、Swift 3。

播客文件:

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'

target 'Project' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  pod 'FirebaseUI', '~> 3.1'
  pod 'Firebase/Core'
  pod 'Firebase/Database'
  pod 'Firebase/Crash'
  pod 'Firebase/Auth'
  pod 'Firebase/Storage'
  pod 'GoogleSignIn'
  pod 'FBSDKLoginKit'


  target 'ProjectTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'ProjectUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

这是我的 AppDelegate

import UIKit
import CoreData
import Firebase
import FirebaseAuthUI
import FirebaseAuth
import GoogleSignIn
import FBSDKLoginKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    FIRApp.configure()
    return true
}

func applicationWillResignActive(_ application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}

func applicationDidEnterBackground(_ application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

func applicationWillEnterForeground(_ application: UIApplication) {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

func applicationDidBecomeActive(_ application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

}

这是我的 View Controller

import UIKit
import Firebase
import FirebaseAuth
import FirebaseAuthUI
import FirebaseDatabaseUI
import FirebaseGoogleAuthUI
import FirebaseFacebookAuthUI
import FBSDKCoreKit
import FBSDKLoginKit

class ViewController: UIViewController, FUIAuthDelegate {

    var kFacebookAppID = "111111111111111"
override func viewDidLoad() {
    super.viewDidLoad()

    //FIRApp.configure()
    checkLoggedIn()
}

func checkLoggedIn() {
    FIRAuth.auth()?.addStateDidChangeListener { auth, user in
        if user != nil {
            // User is signed in.
        } else {
            // No user is signed in.
            self.login()
        }
    }
}

func login() {
    let authUI = FUIAuth.defaultAuthUI()
    let facebookProvider = FUIGoogleAuth()
    let googleProvider = FUIFacebookAuth()
    authUI?.delegate = self
    authUI?.providers = [googleProvider, facebookProvider]
    let authViewController = authUI?.authViewController()
    self.present(authViewController!, animated: true, completion: nil)
}

@IBAction func logoutUser(_ sender: AnyObject) {
    try! FIRAuth.auth()!.signOut()
}

func authUI(_ authUI: FUIAuth, didSignInWith user: FIRUser?, error: Error?) {
    if error != nil {
        //Problem signing in
        login()
    }else {
        //User is in! Here is where we code after signing in

    }
}
}

最佳答案

您的代码看起来不错!要与 Google/Facebook/Twitter Auth 通信,您必须添加对 URL Scheme 的支持到你的应用程序。 CHECK THIS OUT!

func configureAuth() {
    // TODO: configure firebase authentication
    let provider: [FUIAuthProvider] = [FUIGoogleAuth(), FUIFaceBookAuth()]
    FUIAuth.defaultAuthUI()?.providers = provider 

    // listen for changes in the authorization state
    _authHandle = FIRAuth.auth()?.addStateDidChangeListener { (auth: FIRAuth, user: FIRUser?) in

        // check if there is a current user
        if let activeUser = user {
            // check if current app user is the current FIRUser
            if self.user != activeUser {
                // sign in
            }
        } else {
            // user must sign in
            self.loginSession()
        }
    }


}

func loginSession() {
    let authViewController = FUIAuth.defaultAuthUI()!.authViewController()
    self.present(authViewController, animated: true, completion: nil)
}

关于ios - Firebase UI Auth Provider iOS Swift 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42545249/

相关文章:

iphone - 如何修复xcode警告UIActivityIndi​​catorView的xcode 4中的“表达式结果未使用”

ios - Firebase 会自动加密密码吗?

android - 火力地堡供应商

iphone - UITableViewController didSelectRowAtIndexPath :(NSIndexPath *)indexPath

ios - 如何以编程方式在 UITableView 上添加 UIView

node.js - Firebase 函数在 "Error in the build environment"中部署结果

javascript - Firebase 云函数 : "status" :"INVALID_ARGUMENT"

java - FirebaseAuth.getInstance().signOut() 不注销

node.js - Firebase 管理员身份验证 token 已撤销

ios - 数组最大索引 Swift