首页 > 解决方案 > 致命错误:无效状态:收到登录回调,但未发送登录请求

问题描述

尝试使用Swift与 Apple 登录时会发生此错误:

致命错误:无效状态:收到登录回调,但未发送登录请求

我遵循了 Firebase 的本指南。我唯一需要做的就是:

let credential = OAuthProvider.credential(withProviderID: "apple.com", idToken: idTokenString, rawNonce: nonce, accessToken: nil)

代替

let credential = OAuthProvider.credential(withProviderID: "apple.com",
                                            IDToken: idTokenString,
                                            rawNonce: nonce)

作为代码形式的文档给出了错误。

这是我的方法:

func authorizationController(controller: ASAuthorizationController, didCompleteWithAuthorization authorization: ASAuthorization) {
  if let appleIDCredential = authorization.credential as? ASAuthorizationAppleIDCredential {
    guard let nonce = currentNonce else {
      fatalError("Invalid state: A login callback was received, but no login request was sent.")
    }
    guard let appleIDToken = appleIDCredential.identityToken else {
      print("Unable to fetch identity token")
      return
    }
    guard let idTokenString = String(data: appleIDToken, encoding: .utf8) else {
      print("Unable to serialize token string from data: \(appleIDToken.debugDescription)")
      return
    }
//        // Initialize a Firebase credential.
//        let credential = OAuthProvider.credential(withProviderID: "apple.com",
//                                                  IDToken: idTokenString,
//                                                  rawNonce: nonce)


 let credential = OAuthProvider.credential(withProviderID: "apple.com", idToken: idTokenString, rawNonce: nonce, accessToken: nil)

    // Sign in with Firebase.
    Auth.auth().signIn(with: credential) { (authResult, error) in
        if (error != nil) {
        // Error. If error.code == .MissingOrInvalidNonce, make sure
        // you're sending the SHA256-hashed nonce as a hex string with
        // your request to Apple.
            print(error!.localizedDescription)
        return
      }
      // User is signed in to Firebase with Apple.
      // ...
    }
  }
}

这是我的Git-Project。要重现错误,只需运行应用程序并点击appleButton.

标签: iosswiftxcodefirebase

解决方案


在您的代码函数中,“startSignInWithAppleFlow”和“sha256”写在“randomNonceString”中。

修正版

private func randomNonceString(length: Int = 32) -> String {
        precondition(length > 0)
        let charset: Array<Character> =
            Array("0123456789ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvwxyz-._")
        var result = ""
        var remainingLength = length

        while remainingLength > 0 {
            let randoms: [UInt8] = (0 ..< 16).map { _ in
                var random: UInt8 = 0
                let errorCode = SecRandomCopyBytes(kSecRandomDefault, 1, &random)
                if errorCode != errSecSuccess {
                    fatalError("Unable to generate nonce. SecRandomCopyBytes failed with OSStatus \(errorCode)")
                }
                return random
            }

            randoms.forEach { random in
                if remainingLength == 0 {
                    return
                }

                if random < charset.count {
                    result.append(charset[Int(random)])
                    remainingLength -= 1
                }
            }
        }
        return result
    }



    @available(iOS 13, *)
    func startSignInWithAppleFlow() {
        let nonce = randomNonceString()
        currentNonce = nonce
        let appleIDProvider = ASAuthorizationAppleIDProvider()
        let request = appleIDProvider.createRequest()
        request.requestedScopes = [.fullName, .email]
        request.nonce = sha256(nonce)

        let authorizationController = ASAuthorizationController(authorizationRequests: [request])
        authorizationController.delegate = self
        authorizationController.presentationContextProvider = self
        authorizationController.performRequests()
    }

    @available(iOS 13, *)
    func sha256(_ input: String) -> String {
        let inputData = Data(input.utf8)
        let hashedData = SHA256.hash(data: inputData)
        let hashString = hashedData.compactMap {
            return String(format: "%02x", $0)
        }.joined()

        return hashString
    }

Ans 像这样从“appleButtonTapped”调用“startSignInWithAppleFlow”

@objc func appleButtonTapped(){

       startSignInWithAppleFlow()
}

推荐阅读