我正在尝试通过Firebase对Digits用户进行身份验证。我已经两次听说你可以通过twitter端点授权Digits用户。所以我现在正在尝试,但我几乎陷入困境。我正在尝试将会话?.authToken发送到Firebase,以便我可以创建用户。数字看起来很酷,所以我很确定我想坚持下去。如果这完全不可能,我也非常感谢能够使用数字处理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()
}
这是DataService:
class DataService{
static let FireBase = DataService()
private var _REF_BASE = Firebase(url: "https://testingtoday.firebaseio.com")
var Surfer: Firebase {
return _REF_BASE
}
}
答案 0 :(得分:2)
Firebase不支持使用Twitter数字作为身份提供商。
这意味着在Firebase中使用经过数字身份验证的用户的唯一方法是mint a custom token,基于数字ID。所以你让Digits处理身份验证,然后告诉Firebase生成的uid是什么。
这种方法的缺点是你制作自定义令牌需要使用你的Firebase的秘密。这意味着您应该从不在客户端应用程序中存储令牌,因为您将秘密交给任何有聪明才智的人查看您应用的资源。