Skip to content
New issue

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

Identity adfs support aug 2020 #14444

Merged
merged 8 commits into from
Aug 31, 2020

Conversation

g2vinay
Copy link
Member

@g2vinay g2vinay commented Aug 25, 2020

Fixes #14183 #14188 #14653 , #13460

This PR adds ADFS Authorities support to Identity SDK.
Also upgrades the MSAL version in the repo to 1.6.2 everywhere.

@ghost ghost added the Azure.Identity label Aug 25, 2020
@g2vinay g2vinay marked this pull request as ready for review August 25, 2020 23:55
@g2vinay g2vinay self-assigned this Aug 26, 2020
.scopes(new HashSet<>(request.getScopes()))
.build();
Mono<IAuthenticationResult> acquireToken = publicClientApplicationAccessor.getValue()
.flatMap(pc -> Mono.fromFuture(() -> pc.acquireToken(parameters)));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need to use fromFuture? Can it just be:

.flatMap(pc -> pc.acquireToken(parameters));

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

its needed, because we get back a CompletableFuture.

@g2vinay g2vinay merged commit db97b97 into Azure:master Aug 31, 2020
openapi-sdkautomation bot pushed a commit to AzureSDKAutomation/azure-sdk-for-java that referenced this pull request Jun 8, 2021
Fix temporaryDist default value issue (Azure#14444)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE REQ] Add ADFS Identity Provider Support to Interactive Browser Credential
3 participants