Skip to content

Commit 8453c73

Browse files
authored
Merge pull request #51113 from wwlpublish/02354c1826ff76ccd7dc0fe8c42aecdadad4f208a5d34371224d62b8d9955744-live
Modules/M04-microsoft-graph
2 parents d2ea401 + b5560db commit 8453c73

13 files changed

+57
-10
lines changed

learn-pr/wwl-azure/microsoft-graph/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: "Introduction"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit

learn-pr/wwl-azure/microsoft-graph/2-microsoft-graph-overview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Discover Microsoft Graph
44
metadata:
55
title: Discover Microsoft Graph
66
description: "Discover Microsoft Graph"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit

learn-pr/wwl-azure/microsoft-graph/3-microsoft-graph-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Query Microsoft Graph by using REST
44
metadata:
55
title: Query Microsoft Graph by using REST
66
description: "Query Microsoft Graph by using REST"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit

learn-pr/wwl-azure/microsoft-graph/4-microsoft-graph-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Query Microsoft Graph by using SDKs
44
metadata:
55
title: Query Microsoft Graph by using SDKs
66
description: "Query Microsoft Graph by using SDKs"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit

learn-pr/wwl-azure/microsoft-graph/5-microsoft-graph-best-practices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Apply best practices to Microsoft Graph
44
metadata:
55
title: Apply best practices to Microsoft Graph
66
description: "Apply best practices to Microsoft Graph"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
### YamlMime:ModuleUnit
2+
uid: learn.wwl.microsoft-graph.exercise-retrieve-user-profile
3+
title: Exercise - Retrieve user profile information with the Microsoft Graph SDK
4+
metadata:
5+
title: Exercise - Retrieve user profile information with the Microsoft Graph SDK
6+
description: "Exercise - Retrieve user profile information with the Microsoft Graph SDK"
7+
ms.date: 06/26/2025
8+
author: wwlpublish
9+
ms.author: jeffko
10+
ms.topic: unit
11+
ms.custom:
12+
- N/A
13+
durationInMinutes: 15
14+
content: |
15+
[!include[](includes/5a-exercise-microsoft-graph-user-profile.md)]

learn-pr/wwl-azure/microsoft-graph/6-knowledge-check.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ title: Module assessment
44
metadata:
55
title: Module assessment
66
description: "Knowledge check"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit
1111
ms.custom:
1212
- N/A
13-
module_assessment: true
1413
durationInMinutes: 3
1514
quiz:
1615
title: "Check your knowledge"

learn-pr/wwl-azure/microsoft-graph/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summary"
7-
ms.date: 12/09/2024
7+
ms.date: 06/26/2025
88
author: wwlpublish
99
ms.author: jeffko
1010
ms.topic: unit

learn-pr/wwl-azure/microsoft-graph/includes/1-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ After completing this module, you'll be able to:
55
* Explain the benefits of using Microsoft Graph
66
* Perform operations on Microsoft Graph by using REST and SDKs
77
* Apply best practices to help your applications get the most out of Microsoft Graph
8+
* Retrieve user profile information with the Microsoft Graph SDK
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
In this exercise, you create a .NET app to authenticate with Microsoft Entra ID and request an access token, then call the Microsoft Graph API to retrieve and display your user profile information. You learn how to configure permissions and interact with Microsoft Graph from your application.
2+
3+
Tasks performed in this exercise:
4+
5+
* Register an application with the Microsoft identity platform
6+
* Create a .NET console application that implements interactive authentication, and uses the **GraphServiceClient** class to retrieve user profile information.
7+
8+
This exercise takes approximately **15** minutes to complete.
9+
10+
## Before you start
11+
12+
To complete the exercise, you need:
13+
14+
* An Azure subscription. If you don't already have one, you can sign up for one [https://azure.microsoft.com/](https://azure.microsoft.com/).
15+
16+
## Get started
17+
18+
Select the **Launch Exercise** button to open the exercise instructions in a new browser window. When you're finished with the exercise, return here to:
19+
20+
> [!div class="checklist"]
21+
> * Complete the module
22+
> * Earn a badge for completing this module
23+
24+
<br/>
25+
26+
<a href="https://go.microsoft.com/fwlink/?linkid=2326013" target="_blank">
27+
<img src="../media/launch-exercise.png" alt="Button to launch exercise.">
28+
</a>

0 commit comments

Comments
 (0)