Hi There,
In Authorization Code Flow with Proof Key for Code Exchange (PKCE) it said The easiest way to implement the Authorization Code Flow with PKCE is to follow our Mobile/Native Quickstarts.
so I followed Auth0 Android SDK Quickstarts: Login 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