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
Copy file name to clipboardExpand all lines: src/Authentication/docs/AT-Pop.md
+7-15Lines changed: 7 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,16 @@
1
1
# Microsoft Graph PowerShell SDK: Access Token Proof of Possession (AT PoP) Capability
2
2
3
-
## Overview
3
+
## SYNOPSIS
4
4
5
5
This README provides comprehensive details on the Access Token Proof of Possession (AT PoP) functionality introduced in the Microsoft Graph PowerShell SDK. This feature enhances security by binding tokens to specific HTTP methods and URIs, ensuring they are used only for their intended purposes.
6
6
7
-
## Table of Contents
8
-
9
-
-[Key Features](#key-features)
10
-
-[Installation](#installation)
11
-
-[Configuration](#configuration)
12
-
-[Usage Examples](#usage-examples)
13
-
-[References](#references)
14
-
15
-
## Key Features
7
+
## KEY FEATURES
16
8
17
9
-**Access Token Proof of Possession (AT PoP)**: This feature binds tokens to specific HTTP methods and URIs, preventing misuse of tokens by ensuring they are used only for the intended HTTP requests.
18
10
-**Updated Dependencies**: Compatibility improvements with recent library changes.
19
11
-**Enhanced Token Acquisition Options**: Users can now specify the HTTP method and URI during token acquisition to further secure token usage.
20
12
21
-
### Token acquisition behaviors
13
+
### TOKEN ACQUISITION BEHAVIORS
22
14
23
15
| Condition | Unbound (default) | Bound (PoP) |
24
16
|-----------|-----------|-----------|
@@ -28,7 +20,7 @@ This README provides comprehensive details on the Access Token Proof of Possessi
28
20
| Existing expired token, below max token refreshes | New token, silent | New token, silent |
29
21
| Existing expired token, exceeded max refreshes | New token, interactive | New token, interactive |
30
22
31
-
## Installation
23
+
## INSTALLATION
32
24
33
25
To install the Microsoft Graph PowerShell SDK with the latest updates, use the following command:
Ensure you are using the latest version to access the AT PoP functionality.
40
32
41
-
## Configuration
33
+
## CONFIGURATION
42
34
43
35
### Enabling Access Token Proof of Possession
44
36
@@ -52,7 +44,7 @@ Connect-MgGraph
52
44
53
45
This configuration ensures that the acquired token is only valid for the specified HTTP method and URI.
54
46
55
-
## Usage Examples
47
+
## EXAMPLES
56
48
57
49
### Example 1:
58
50
@@ -74,6 +66,6 @@ Connect-MgGraph
74
66
Invoke-MgGraphRequest -Uri "https://graph.microsoft.com/v1.0/me/sendMail" -Method POST -Debug
75
67
```
76
68
77
-
## References
69
+
## REFERENCES
78
70
79
71
This README provides a detailed guide on the new AT PoP functionality, offering users the ability to secure their token usage effectively. If you have any questions or need further assistance, please refer to the official [Microsoft Graph PowerShell SDK documentation](https://docs.microsoft.com/en-us/powershell/microsoftgraph/).
0 commit comments