• 15-08-2023, 17:26:25
    #1
    Merhaba, giriş yaparken bu yazılar dökülüyor terminalde sorun nedir? Çözebilecek var mı?

    D/FirebaseAuth( 9422): Notifying id token listeners about a sign-out event.
    D/FirebaseAuth( 9422): Notifying auth state listeners about a sign-out event.
    I/FirebaseAuth( 9422): Logging in as mangola02gmail.com with empty reCAPTCHA token
    W/System  ( 9422): Ignoring header X-Firebase-Locale because its value was null.
    E/RecaptchaCallWrapper( 9422): Initial task failed for action RecaptchaAction(action=signInWithPassword)with exception - An internal error has occurred. [ Requests from this Android client application com.dini.yarisma are blocked. ]
    I/flutter ( 9422): 122
    D/FirebaseAuth( 9422): Notifying id token listeners about a sign-out event.
    D/FirebaseAuth( 9422): Notifying auth state listeners about a sign-out event.
  • 15-08-2023, 17:31:56
    #2
    Requests from this Android client application com.dini.yarisma are blocked. yazıyor. yani uygulamanızdan gelen istekleri bloklamış firebase
  • 15-08-2023, 17:34:53
    #3
    SitePro adlı üyeden alıntı: mesajı görüntüle
    Merhaba, giriş yaparken bu yazılar dökülüyor terminalde sorun nedir? Çözebilecek var mı?

    D/FirebaseAuth( 9422): Notifying id token listeners about a sign-out event.
    D/FirebaseAuth( 9422): Notifying auth state listeners about a sign-out event.
    I/FirebaseAuth( 9422): Logging in as mangola02gmail.com with empty reCAPTCHA token
    W/System  ( 9422): Ignoring header X-Firebase-Locale because its value was null.
    E/RecaptchaCallWrapper( 9422): Initial task failed for action RecaptchaAction(action=signInWithPassword)with exception - An internal error has occurred. [ Requests from this Android client application com.dini.yarisma are blocked. ]
    I/flutter ( 9422): 122
    D/FirebaseAuth( 9422): Notifying id token listeners about a sign-out event.
    D/FirebaseAuth( 9422): Notifying auth state listeners about a sign-out event.
    Web sitesinden email ile girişi aktifleştirdiniz mi? signInWithEmailAndPassword fonksiyonunu try catch alıp FirebaseAuthException ile hata yakalıyor musunuz?
  • 15-08-2023, 17:35:07
    #4
    paollu adlı üyeden alıntı: mesajı görüntüle
    Requests from this Android client application com.dini.yarisma are blocked. yazıyor. yani uygulamanızdan gelen istekleri bloklamış firebase
    Yani ne yapmak lazım.
  • 15-08-2023, 17:50:24
    #5
    Firebase tarafından izinlere baktınız mı ? Authtan email/passı açın.
  • 15-08-2023, 17:55:11
    #6
    xTeLum adlı üyeden alıntı: mesajı görüntüle
    Web sitesinden email ile girişi aktifleştirdiniz mi? signInWithEmailAndPassword fonksiyonunu try catch alıp FirebaseAuthException ile hata yakalıyor musunuz?

    Halimcandogan adlı üyeden alıntı: mesajı görüntüle
    Firebase tarafından izinlere baktınız mı ? Authtan email/passı açın.
    Çözene 750 TL dedim. Yapamadılar

  • 15-08-2023, 22:08:55
    #7
    pek anlamam ama internette şöyle bir kod buldum. await den kaynaklanıyor diyor.
    try {  final credential = await FirebaseAuth.instance.signInWithEmailAndPassword(    email: emailAddress,    password: password  ); } on FirebaseAuthException catch (e) {  if (e.code == 'user-not-found') {    print('No user found for that email.');  } else if (e.code == 'wrong-password') {    print('Wrong password provided for that user.');  } }