Which SDK this is regarding: com.auth0.android:auth0:2.7.0
Running on Android phones version 29 and up
I am having trouble with logging in using Auth0’s social login (Fitbit) inside a Chrome custom tab on Android. When the social login goes to redirect back to my app using my specified Auth0 callback URL, it goes to a page that says “Not found” in plain text with no other information.
My specified callback URL is https://{my-tenant}.eu.auth0.com/android/{my-android-package}/callback. When I open the failing URL in Chrome proper, it looks like this: https://{my-tenant}.eu.auth0.com/android/{my-android-package}/callback?code=L…k&state=J…E (information redacted by the …s).
I am using a CredentialsManager to hold the credentials that should be returned by the login process.
I have tried the following to rectify the problem:
Clearing the browser cache (Chrome in my simulation, Firefox on my physical phone)
Clearing the CredentialsManager on Activity creation (which then triggers the login)
The problem also occurs when using the Auth0 standard login
Any help in getting my app to login correctly is appreciated!