You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Current Behavior
When execute logout method on angular the parameter id_token is not available on Java class "GenericOAuth2Plugin" on Android Studio and the always enter on the if statement
String idToken = ConfigUtils.getParam(String.class, call.getData(), PARAM_ID_TOKEN);
if (idToken == null) {
this.disposeAuthService();
this.discardAuthState();
call.resolve();
return;
}
The text was updated successfully, but these errors were encountered:
There is something definitely missing with this logout support.
You can get around the id_token issue by adding it manually to the config object, but then you will hit another issue where it doesn't parse the logoutUrl.
It has been reported here #233 (comment) over a year ago. So I wonder if this lib is even maintained anymore?
Btw. for web and Android, this is the only logout approach that worked for me #97 (comment). Haven't tested iOS yet
Capacitor version:
Run
npx cap doctor
:@capacitor/android: 6.1.2
@capacitor/cli: 6.1.0
@capacitor/core: 6.1.0
Library version:
OAuth Provider:
Your Plugin Configuration
Affected Platform(s):
AndroidManifest.xml
The text was updated successfully, but these errors were encountered: