Skip to content

Commit c0ed3bf

Browse files
committed
fix-links
1 parent 8f006ee commit c0ed3bf

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/active-directory/develop/includes/guidedsetup-windesktop-test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.custom: include file
2222

2323
To run your project, in Visual Studio, select **F5**. Your application **MainWindow** is displayed, as shown here:
2424

25-
![Test your application.](../media/develop-guidedsetup-windesktop-test/samplescreenshot.png)
25+
![Test your application.](./media/guidedsetup-windesktop-test/samplescreenshot.png)
2626

2727
The first time that you run the application and select the **Call Microsoft Graph API** button, you're prompted to sign in. Use an Azure Active Directory account (work or school account) or a Microsoft account (live.com, outlook.com) to test it.
2828

@@ -32,7 +32,7 @@ The first time that you run the application and select the **Call Microsoft Grap
3232

3333
The first time that you sign in to your application, you're also prompted to provide consent to allow the application to access your profile and sign you in, as shown here:
3434

35-
![Provide your consent for application access.](./media/develop-guidedsetup-windesktop-test/consentscreen.png)
35+
![Provide your consent for application access.](./media/guidedsetup-windesktop-test/consentscreen.png)
3636

3737
### View application results
3838

articles/active-directory/develop/tutorial-v2-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In this tutorial:
3838

3939
## How this tutorial works
4040

41-
![Shows how the sample app generated by this tutorial works.](../../../includes/media/develop-guidedsetup-android-intro/android-intro.svg)
41+
![Shows how the sample app generated by this tutorial works.](./media/guidedsetup-android-intro/android-intro.svg)
4242

4343
The app in this tutorial signs in users and get data on their behalf. This data is accessed through a protected API (Microsoft Graph API) that requires authorization and is protected by the Microsoft identity platform.
4444

articles/active-directory/develop/tutorial-v2-ios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this tutorial:
2626
> - Create an iOS or macOS app project in _Xcode_
2727
> - Register the app in the Azure portal
2828
> - Add code to support user sign-in and sign-out
29-
> - Add code to call the Microsoft Graph API
29+
> - Add code to call t
3030
> - Test the app
3131
3232
## Prerequisites
@@ -35,7 +35,7 @@ In this tutorial:
3535

3636
## How tutorial app works
3737

38-
![Shows how the sample app generated by this tutorial works.](../../../includes/media/develop-guidedsetup-ios-introduction/iosintro.svg)
38+
![Shows how the sample app generated by this tutorial works.](./media/guidedsetup-ios-introduction/iosintro.svg)
3939

4040
The app in this tutorial can sign in users and get data from Microsoft Graph on their behalf. This data is accessed via a protected API (Microsoft Graph API in this case) that requires authorization and is protected by the Microsoft identity platform.
4141

@@ -155,7 +155,7 @@ The only value you modify is the value assigned to `kClientID` to be your [Appli
155155

156156
Add a new keychain group to your project **Signing & Capabilities**. The keychain group should be `com.microsoft.adalcache` on iOS and `com.microsoft.identity.universalstorage` on macOS.
157157

158-
![Xcode UI displaying how the keychain group should be set up.](../../../includes/media/develop-guidedsetup-ios-introduction/iosintro-keychainShare.png)
158+
![Xcode UI displaying how the keychain group should be set up.](./media/guidedsetup-ios-introduction/iosintro-keychainShare.png)
159159

160160
## For iOS only, configure URL schemes
161161

articles/active-directory/develop/tutorial-v2-javascript-spa.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ sampleApp/
5555

5656
## How the sample app works
5757

58-
![Diagram that shows how the sample app generated by this tutorial works.](media/develop-guidedsetup-javascriptspa-introduction/javascriptspa-intro.svg)
58+
![Diagram that shows how the sample app generated by this tutorial works.](./media/guidedsetup-javascriptspa-introduction/javascriptspa-intro.svg)
5959

6060
The application that you create in this tutorial enables a JavaScript SPA to query the Microsoft Graph API. This querying can also work for a web API that's set up to accept tokens from the Microsoft identity platform. After the user signs in, the SPA requests an access token and adds it to the HTTP requests through the authorization header. The SPA will use this token to acquire the user's profile and emails via the Microsoft Graph API.
6161

@@ -556,19 +556,19 @@ Now that you've set up the code, you need to test it:
556556
557557
After the browser loads your *index.html* file, select **Sign In**. You're prompted to sign in with the Microsoft identity platform.
558558

559-
:::image type="content" source="./media/develop-guidedsetup-javascriptspa-test/javascript-spa-screenshot-v2.png" alt-text="Screenshot that shows the JavaScript SPA account sign-in window." :::
559+
:::image type="content" source="media/guidedsetup-javascriptspa-test/javascript-spa-screenshot-v2.png" alt-text="Screenshot that shows the JavaScript SPA account sign-in window." :::
560560

561561
### Provide consent for application access
562562

563563
The first time that you sign in to your application, you're prompted to grant it access to your profile and sign you in. Select **Accept** to continue.
564564

565-
:::image type="content" source="./media/develop-guidedsetup-javascriptspa-test/javascript-spa-consent-v2.png" alt-text="Screenshot that shows the window where the app requests permissions." :::
565+
:::image type="content" source="./media/guidedsetup-javascriptspa-test/javascript-spa-consent-v2.png" alt-text="Screenshot that shows the window where the app requests permissions." :::
566566

567567
### View application results
568568

569569
After you sign in, you can select **Read More** under your displayed name. Your user profile information is returned in the displayed Microsoft Graph API response.
570570

571-
:::image type="content" source="./media/develop-guidedsetup-javascriptspa-test/javascript-spa-results-v2.png" alt-text="Screenshot that shows the expected results from the Microsoft Graph API call." :::
571+
:::image type="content" source="./media/guidedsetup-javascriptspa-test/javascript-spa-results-v2.png" alt-text="Screenshot that shows the expected results from the Microsoft Graph API call." :::
572572

573573
### More information about scopes and delegated permissions
574574

articles/active-directory/develop/tutorial-v2-windows-desktop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In this tutorial:
3939

4040
## How the sample app generated by this guide works
4141

42-
![Shows how the sample app generated by this tutorial works](./media/develop-guidedsetup-windesktop-intro/windesktophowitworks.svg)
42+
![Shows how the sample app generated by this tutorial works](./media/guidedsetup-windesktop-intro/windesktophowitworks.svg)
4343

4444
The sample application that you create with this guide enables a Windows Desktop application that queries the Microsoft Graph API or a web API that accepts tokens from a Microsoft identity-platform endpoint. For this scenario, you add a token to HTTP requests via the Authorization header. The Microsoft Authentication Library (MSAL) handles token acquisition and renewal.
4545

0 commit comments

Comments
 (0)