Skip to content

Commit 776ffd5

Browse files
committed
Docs URL update
1 parent 17e9057 commit 776ffd5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/ask-a-question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ assignees: ''
1010
Thank you for taking an interest in Microsoft Graph development! Please feel free to ask a question here, but keep in mind the following:
1111

1212
- This is not an official Microsoft support channel, and our ability to respond to questions here is limited. Questions about Graph, or questions about adding a new feature to the sample, will be answered on a best-effort basis.
13-
- Questions should be asked on [Microsoft Q&A](https://docs.microsoft.com/answers/products/graph).
13+
- Questions should be asked on [Microsoft Q&A](https://learn.microsoft.com/answers/products/graph).
1414
- Issues with Microsoft Graph itself should be handled through [support](https://developer.microsoft.com/graph/support).

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010
**Where did you get the code?**
1111
- [ ] Downloaded from GitHub
1212
- [ ] Downloaded from the [Microsoft Graph quick start tool](https://developer.microsoft.com/graph/quick-start)
13-
- [ ] Followed the tutorial from [Microsoft Graph tutorials](https://docs.microsoft.com/graph/tutorials)
13+
- [ ] Followed the tutorial from [Microsoft Graph tutorials](https://learn.microsoft.com/graph/tutorials)
1414

1515
**Describe the bug**
1616
A clear and concise description of what the bug is.
@@ -35,7 +35,7 @@ If applicable, add screenshots to help explain your problem.
3535

3636
**Dependency versions**
3737
- Authentication library (MSAL, etc.) version:
38-
- Graph library (Graph SDK, REST library, etc.) version:
38+
- Graph library (Graph SDK, REST library, etc.) version:
3939

4040
**Additional context**
4141
Add any other context about the problem here.

app-auth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you don't have a Microsoft account, you can [sign up for the Microsoft 365 De
1111

1212
## Register an application
1313

14-
You can register an application using the Azure Active Directory admin center, or by using the [Microsoft Graph PowerShell SDK](https://docs.microsoft.com/graph/powershell/get-started).
14+
You can register an application using the Azure Active Directory admin center, or by using the [Microsoft Graph PowerShell SDK](https://learn.microsoft.com/graph/powershell/get-started).
1515

1616
### Azure Active Directory admin center
1717

@@ -47,7 +47,7 @@ You can register an application using the Azure Active Directory admin center, o
4747

4848
### PowerShell
4949

50-
To use PowerShell, you'll need the Microsoft Graph PowerShell SDK. If you do not have it, see [Install the Microsoft Graph PowerShell SDK](https://docs.microsoft.com/graph/powershell/installation) for installation instructions.
50+
To use PowerShell, you'll need the Microsoft Graph PowerShell SDK. If you do not have it, see [Install the Microsoft Graph PowerShell SDK](https://learn.microsoft.com/graph/powershell/installation) for installation instructions.
5151

5252
1. Open PowerShell and run the [RegisterAppForAppOnlyAuth.ps1](RegisterAppForAppOnlyAuth.ps1) file with the following command.
5353

user-auth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To run the completed project in this folder, you need the following:
1111

1212
## Register an application
1313

14-
You can register an application using the Azure Active Directory admin center, or by using the [Microsoft Graph PowerShell SDK](https://docs.microsoft.com/graph/powershell/get-started).
14+
You can register an application using the Azure Active Directory admin center, or by using the [Microsoft Graph PowerShell SDK](https://learn.microsoft.com/graph/powershell/get-started).
1515

1616
### Azure Active Directory admin center
1717

@@ -37,7 +37,7 @@ You can register an application using the Azure Active Directory admin center, o
3737

3838
### PowerShell
3939

40-
To use PowerShell, you'll need the Microsoft Graph PowerShell SDK. If you do not have it, see [Install the Microsoft Graph PowerShell SDK](https://docs.microsoft.com/graph/powershell/installation) for installation instructions.
40+
To use PowerShell, you'll need the Microsoft Graph PowerShell SDK. If you do not have it, see [Install the Microsoft Graph PowerShell SDK](https://learn.microsoft.com/graph/powershell/installation) for installation instructions.
4141

4242
1. Open PowerShell and run the [RegisterAppForUserAuth.ps1](RegisterAppForUserAuth.ps1) file with the following command, replacing *<audience-value>* with the desired value (see table below).
4343

@@ -71,7 +71,7 @@ To use PowerShell, you'll need the Microsoft Graph PowerShell SDK. If you do not
7171
| `clientId` | The client ID of your app registration |
7272
| `tenantId` | If you chose the option to only allow users in your organization to sign in, change this value to your tenant ID. Otherwise leave as `common`. |
7373
74-
## Build and run the sample
74+
## Run the sample
7575
7676
In your command-line interface (CLI), navigate to the project directory and run the following command.
7777

user-auth/RegisterAppForUserAuth.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ param(
2121
)
2222

2323
# Tenant to use in authentication.
24-
# See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-device-code#device-authorization-request
24+
# See https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-device-code#device-authorization-request
2525
$authTenant = switch ($SignInAudience)
2626
{
2727
"AzureADMyOrg" { "tenantId" }

0 commit comments

Comments
 (0)