We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have run example project from SDKSample. The code in the class IdentityViewController in the block never executes:
_platformManager.accountsPromise.then(^{ // ... code });
So after success authentication to Microsoft account, _transitionToMainViewController method does not execute.
The text was updated successfully, but these errors were encountered:
I've the same problem. To correct that, on the func - (AnyPromise*)signInMsaAsync { You need to remove the return on MCDConnectedDevicesPlatform: 468:
- (AnyPromise*)signInMsaAsync {
return
MCDConnectedDevicesPlatform: 468
MSAAccount* msaAccount = [[MSAAccount alloc] initWithClientId:CLIENT_ID scopeOverrides:@{}]; return [AnyPromise promiseWithAdapterBlock:^(PMKAdapter _Nonnull adapter) { [msaAccount signInWithCompletionCallback:adapter]; }].then(^{ Account* account = [[Account alloc] initWithMSAAccount:msaAccount platform:self.platform apnsManager:self.apnsManager]; account.state = AccountRegistrationStateInAppCacheOnly; [self.accounts addObject:account]; [account prepareAccountAsync:self]; }).then(^{ [self accountListChanged]; }); } https://github.com/Microsoft/project-rome/issues/76 will fix that
Sorry, something went wrong.
No branches or pull requests
I have run example project from SDKSample. The code in the class IdentityViewController in the block never executes:
So after success authentication to Microsoft account, _transitionToMainViewController method does not execute.
The text was updated successfully, but these errors were encountered: