11

I'm trying to Build Google+ Sign In On Android Device using Google Identity Toolkit , I followed the Quick Start Guide on https://developers.google.com/identity/toolkit/android/ , but I'm repeatedly getting the following error.

"error": { "errors": [ { "domain": "global", "reason": "invalid", "message": "CONFIGURATION_NOT_FOUND" } ], "code": 400, "message": "CONFIGURATION_NOT_FOUND" } }

Anyone can help me?

Surya
  • 121
  • 1
  • 6
  • Could you please repost your question to https://groups.google.com/forum/#!forum/google-identity-toolkit, which enables identity toolkit engineers to contact you directly? – Ying Oct 08 '15 at 17:31

3 Answers3

23

May be you are using firebase email/password authentication service or some other authentication service provided by firebase and haven't enabled it yet from the firebase console Authentication tab.

I have resolved this sort of issue in that way.

enter image description here

Kasunaz
  • 573
  • 5
  • 17
0

In my case i had to setup this config: ./google-services.json

As explained here: https://docs.expo.io/guides/setup-native-firebase/#android

Abdelhadi Abdo
  • 392
  • 2
  • 9
0

I was using Firebase auth .signInWithEmailAndPassword(email, password) and faced that issue. In my case, just like Kasunaz aforementioned, enabling Email/Password sign-in method solved the issue.

ArtemNovikov
  • 311
  • 4
  • 8