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
signInSilent always gives me the error "No accounts found on device" even after a successful signInInteractive. This only happens on iOS on Android signInSilent works fine.
The text was updated successfully, but these errors were encountered:
@alexw-at - did you ever resolve this issue on iOS - I am getting the same behaviour in an Ionic app using this plugin. Like you say it works as expected on Android.
does not save the accounts retrieved from response, so when
(void)signInSilent:(CDVInvokedUrlCommand*)command
try to retrieve the accounts in
if ([accounts count] == 0)
{
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"No accounts found on device."];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
return;
}
throw the exception.
UPDATE
I have set on XCODE in --> keychain-access-groups
manually this value: com.microsoft.adalcache
and everything work
signInSilent always gives me the error "No accounts found on device" even after a successful signInInteractive. This only happens on iOS on Android signInSilent works fine.
The text was updated successfully, but these errors were encountered: