-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Description
Hello,
The library throws an error when somebody clicks a phone or email link on the SSO page. The error is
ERR_UNKNOWN_URL_SCHEME
How do I handle this?
Below is my code
instantiateOauthManager(getOauthBuilder(authorizationUrl));
OAuthManager.OAuthCallback<Credential> authorizationCallback = future -> {
try {
Credential credential = future.getResult();
this.credential = credential;
} catch (IOException e) {
Log.e(LOG_TAG, "Error getting oauth2 ping sso credential. " + e.getMessage());
} catch (CancellationException e) {
Log.e(LOG_TAG, "Single sign on action has been cancelled by the user. " + e.getMessage());
}
};
oauth.authorizeExplicitly(Constants.PING_SSO_OAUTH2_USERID, authorizationCallback, null);
Metadata
Metadata
Assignees
Labels
No labels