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

[Bug] Use of WithProofOfPossession in PCA should not be listed as Experimental when WAM GAs #3992

Closed
1 of 7 tasks
gladjohn opened this issue Mar 7, 2023 · 1 comment · Fixed by #4048
Closed
1 of 7 tasks

Comments

@gladjohn
Copy link
Contributor

gladjohn commented Mar 7, 2023

Logs and network traces
none

Which version of MSAL.NET are you using?
MSAL 4.50.0

Platform
Net 5.0 Windows xxxx

What authentication flow has the issue?

  • Desktop / Mobile
    • Interactive - WAM
    • Integrated Windows Authentication
    • Username Password
    • Device code flow (browserless)
  • Web app
    • Authorization code
    • On-Behalf-Of
  • Daemon app
    • Service to Service calls

Is this a new or existing app?
Dev App

Repro

catch (MsalUiRequiredException)
            {
                result = await pca
                    .AcquireTokenInteractive(s_scopes)
                    .WithParentActivityOrWindow(hWnd)
                    .WithProofOfPossession("nonce", System.Net.Http.HttpMethod.Get, s_downstreamApi)
                    .ExecuteAsync()
                    .ConfigureAwait(false);
            }

Expected behavior
Use of WithProofOfPossession in PCA should not be listed as Experimental when WAM GAs

Actual behavior
Use of WithProofOfPossession in PCA is currently listed as Experimental

Additional context / logs / screenshots / links to code
image

@bgavrilMS
Copy link
Member

Agreed

@pmaytak pmaytak modified the milestones: 4.51.0, 4.52.0 Mar 13, 2023
@bgavrilMS bgavrilMS moved this from Estimated/Committed to In Progress in MSAL Customer Trust / QM Mar 15, 2023
@pmaytak pmaytak self-assigned this Mar 30, 2023
@pmaytak pmaytak moved this from In Progress to Waiting for Code Review in MSAL Customer Trust / QM Mar 30, 2023
@github-project-automation github-project-automation bot moved this from Waiting for Code Review to Fixed in MSAL Customer Trust / QM Mar 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment