Hi There,
In https://auth0.com/docs/flows/concepts/auth-code-pkce it said The easiest way to implement the Authorization Code Flow with PKCE is to follow our Mobile/Native Quickstarts. so I followed Add Login to Your Android Application using the Auth0.Android SDK - Auth0 Docs but got com.auth0.android.authentication.AuthenticationException: Could not verify the ID token error.
Here is my config:
WebAuthProvider.login(auth0)
.withScheme("https")
.withAudience(String.format("https://%s/userinfo", getString(R.string.com_auth0_domain)))
.start(this, loginCallback);
Thanks