Skip to content

Commit ad63199

Browse files
fixing build issues related to docs
1 parent 00f490a commit ad63199

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/Authentication/docs/AT-Pop.md renamed to docs/AT-Pop.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
# Microsoft Graph PowerShell SDK: Access Token Proof of Possession (AT PoP) Capability
22

3-
## SYNOPSIS
3+
## Overview
44

55
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.
66

7-
## KEY FEATURES
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
816

917
- **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.
1018
- **Updated Dependencies**: Compatibility improvements with recent library changes.
1119
- **Enhanced Token Acquisition Options**: Users can now specify the HTTP method and URI during token acquisition to further secure token usage.
1220

13-
### TOKEN ACQUISITION BEHAVIORS
21+
### Token acquisition behaviors
1422

1523
| Condition | Unbound (default) | Bound (PoP) |
1624
|-----------|-----------|-----------|
@@ -20,7 +28,7 @@ This README provides comprehensive details on the Access Token Proof of Possessi
2028
| Existing expired token, below max token refreshes | New token, silent | New token, silent |
2129
| Existing expired token, exceeded max refreshes | New token, interactive | New token, interactive |
2230

23-
## INSTALLATION
31+
## Installation
2432

2533
To install the Microsoft Graph PowerShell SDK with the latest updates, use the following command:
2634

@@ -30,7 +38,7 @@ Install-Module -Name Microsoft.Graph -AllowClobber -Force
3038

3139
Ensure you are using the latest version to access the AT PoP functionality.
3240

33-
## CONFIGURATION
41+
## Configuration
3442

3543
### Enabling Access Token Proof of Possession
3644

@@ -44,7 +52,7 @@ Connect-MgGraph
4452

4553
This configuration ensures that the acquired token is only valid for the specified HTTP method and URI.
4654

47-
## EXAMPLES
55+
## Usage Examples
4856

4957
### Example 1:
5058

@@ -66,6 +74,6 @@ Connect-MgGraph
6674
Invoke-MgGraphRequest -Uri "https://graph.microsoft.com/v1.0/me/sendMail" -Method POST -Debug
6775
```
6876

69-
## REFERENCES
77+
## References
7078

7179
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

Comments
 (0)