如何在 Swift 中通过 Firebase Twitter 方法对 Digits 用户进行身份验证?

How can I authenticate Digits users via Firebase Twitter method in Swift?

我正在尝试通过 Firebase 对 Digits 用户进行身份验证。我不止两次听说您可以通过 Twitter 端点对 Digits 用户进行授权。所以我现在正在尝试,但我几乎被困住了。我正在尝试将 session?.authToken 发送到 Firebase,以便我可以创建用户。 Digits 看起来真的很酷,所以我很确定我想坚持下去。如果这完全不可能,我也非常希望能指出能够处理数字的 BaaS 的方向。提前致谢,这是我的代码:

override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let authButton = DGTAuthenticateButton(authenticationCompletion: { (session: DGTSession?, error: NSError?) in
            if (session != nil) {
                // TODO: associate the session userID with your user model
                let message = "Phone number: \(session!.phoneNumber)"
                let alertController = UIAlertController(title: "You are logged in!", message: message, preferredStyle: .Alert)
                alertController.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: .None))
                self.presentViewController(alertController, animated: true, completion: .None)
                DataService.FireBase.Surfer.authWithOAuthProvider("twitter", token: session!.authToken, withCompletionBlock: { error, newAuthData in
                    if error != nil {
                        print(error)

                    } else {
                        print(newAuthData)
                    }
                })

            } else {
                NSLog("Authentication error: %@", error!.localizedDescription)

            }
        })
        authButton.center = self.view.center
        self.view.addSubview(authButton)
        let button   = UIButton(type: UIButtonType.System) as UIButton
        button.frame = CGRectMake(100, 100, 100, 50)
        button.backgroundColor = UIColor.greenColor()
        button.setTitle("Test Button", forState: UIControlState.Normal)
        button.addTarget(self, action: "buttonAction:", forControlEvents: UIControlEvents.TouchUpInside)

        self.view.addSubview(button)

    }

    func buttonAction(sender:UIButton!)
    {
        print("Button tapped")
        print(authTkn)
        Digits.sharedInstance().logOut()
    }

这是数据服务:

class DataService{

    static let FireBase = DataService()

    private var _REF_BASE = Firebase(url: "https://testingtoday.firebaseio.com")

    var Surfer: Firebase {
        return _REF_BASE
    }
}

Firebase 不支持使用 Twitter Digits 作为身份提供者。

这意味着在 Firebase 中使用经过 Digits 身份验证的用户的唯一方法是 mint a custom token,基于 Digits ID。所以你让 Digits 处理身份验证,然后告诉 Firebase 结果 uid 是什么。

这种方法的缺点是您铸造自定义令牌需要使用您的 Firebase 的秘密。这意味着你应该永远不要在客户端应用程序中铸造令牌,因为你会将你的秘密交给任何有智慧查看你应用程序资源的人。