-
Notifications
You must be signed in to change notification settings - Fork 169
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
Access Token Proof of Possession Capability #2512
base: dev
Are you sure you want to change the base?
Conversation
7f46a1f
to
21ed0a9
Compare
f46153c
to
d79e836
Compare
d79e836
to
0a2936e
Compare
0a2936e
to
5e9961e
Compare
5e9961e
to
dd2f7e0
Compare
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
ffa1edb
to
9f90a73
Compare
929b2b4
to
4d5e435
Compare
src/Authentication/Authentication.Core/Interfaces/IGraphRequestProofofPossession.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Show resolved
Hide resolved
src/Authentication/Authentication/Handlers/AuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication/Handlers/AuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
To enable AT PoP, configure the Microsoft Graph SDK options as follows: | ||
|
||
```powershell | ||
Set-MgGraphOption -EnableATPoP $true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we release this specific feature as preview / experimental? Does MS Graph PS have this capability?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good idea. @timayabi2020 can this be released as a preview version similar to the version 2.0 roll out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it can, however I think we should first publish the feature to an internal feed and get a few guys to test internally
e90f311
to
13e2057
Compare
13e2057
to
8883eda
Compare
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
<PackageReference Include="Azure.Identity.Broker" Version="1.1.0" /> | ||
<PackageReference Include="Microsoft.Graph.Core" Version="3.0.9" /> | ||
<PackageReference Include="Azure.Identity" Version="1.12.0-beta.3" /> | ||
<PackageReference Include="Azure.Identity.Broker" Version="1.2.0-beta.1" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In previous conversations, we had wondered if Azure.Identity is actually bringing any value here over using Microsoft.Identity.Client directly. Azure.Identity is intended to limit the surface area exposed to 3P developers. This is not relevant for PowerShell scenarios. I am especially concerned when I see the introduction of Azure.Core.Pipeline. We explicitly don't use the Azure Pipelining because it is only there to abstract away language differences, and again that isn't relevant because our PowerShell modules are only implemented in C#.
8883eda
to
e708fc1
Compare
src/Authentication/Authentication.Test/Microsoft.Graph.Authentication.Test.csproj
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Outdated
Show resolved
Hide resolved
src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs
Show resolved
Hide resolved
d2d03fa
to
ff194cb
Compare
8b69aea
to
a1f778a
Compare
34fb968
to
d811806
Compare
Adding AT PoP skeleton (#2511) * adding "-AT PoP" option to "Set-MgGraphOptions" --------- AT PoP Version 1 Fehintolaobafemi/methodanduri (#2751) * Making changes to how httpmethod and uri is processed --------- Fixing and updating the docs resolving build break fixing build issues related to docs resolving PR comments updating nuget packages removing unnecessary string assignment Resolving PR comments reverting test csproj changes
d811806
to
2136757
Compare
Fixes #
Changes proposed in this pull request
Other links