Android Google Sign In fails with error code 8 (no message) -
i trying integrate google sign in application, errors cannot understand.
i have configured according tutorial here, not authenticate me. presented login panel shows accounts, , login activity onactivityresult fires, when looking googlesigninresult, have status statuscode 8 , no message.
it seems related this, bit confusing.
any idea ?
check out answer question: an internal_error
(8) occurred when requestemail googlesigninoptions on android
if error code 8 (internal_error
), please double check app registration in dev console. note every registered android client uniquely identified (package name, android signing certificate sha-1) pair. if have multiple package names / signing certificate debug , production environments, make sure register every pair of them. verify:
- open credentials page , select project
- make sure every pair has android typed oauth 2.0 client ids. create new oauth 2.0 client id android client, select new credentials->oauth2 client id dropdown, select android , input package name / signing-certificate fingerprint there.
to signing key certificate sha-1:
standard debug key keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
other (custom) key keytool -list -v -keystore $your_keystore_location
Comments
Post a Comment