使用Firebase提供的API密钥无效

时间:2016-05-25 11:54:03

标签: ios swift facebook firebase firebase-authentication

我正在使用Firebase Auth来允许用户使用Facebook注册。我已采取此处的所有步骤来实施注册,包括将 GoogleService-Info.plist 添加到我的项目中。

我获得了Facebook权限屏幕,但是当应用程序点击时

FIRAuth.auth()?.signInWithCredential(credential) { (user, error) in

返回此错误:请求中提供了无效的API密钥。

有人可以帮我这个吗?

由于

这是我使用Facebook登录的功能代码。

@IBAction func signUpWithFacebook() {

    let fbLogin = FBSDKLoginManager()

    fbLogin.logInWithReadPermissions(["email"], fromViewController:self,  handler: {
        (result, error) -> Void in

        if ((error) != nil) {
            print("Process error")
        } else if (result.isCancelled) {
            print("Cancelled");
        } else {
            print("Logged in");

            let accessToken = FBSDKAccessToken.currentAccessToken().tokenString
            let credential = FIRFacebookAuthProvider.credentialWithAccessToken(accessToken)
            print(FBSDKAccessToken.currentAccessToken().tokenString)

            FIRAuth.auth()?.signInWithCredential(credential) { (user, error) in
                // ...
                if let user = user{
                    print(user.displayName)
                }
                else{

                    if let error = error {
                        print(error.localizedDescription)
                    }
                }
            }

        }
    })
}

2 个答案:

答案 0 :(得分:34)

为任何需要解决方案的人解决它。

有时,GoogleService-Info.plist中缺少 API_KEY ,需要添加。

可以在Google API控制台https://console.developers.google.com/

中找到API密钥

答案 1 :(得分:15)

您可以通过再次在Firebase控制台的“项目设置”部分下载“GoogleService-Info.plist”文件来解决此问题。

确保在新的“GoogleService-Info.plist”上设置了API_KEY。