Skip to content

Commit cf1a5be

Browse files
committed
Added number prefixes to tutorial files to clarify order
1 parent 49916ce commit cf1a5be

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Before you start this tutorial, you should have [Node.js](https://nodejs.org) in
1414
1515
## Feedback
1616

17-
Please provide any feedback on this tutorial in the [GitHub repository](https://github.com/microsoftgraph/msgraph-training-angularspa).
17+
Please provide any feedback on this tutorial in the [GitHub repository](https://github.com/microsoftgraph/msgraph-training-angularspa).
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,4 +329,4 @@ Click the user avatar in the top right corner to access the **Sign Out** link. C
329329

330330
At this point your application has an access token, which is sent in the `Authorization` header of API calls. This is the token that allows the app to access the Microsoft Graph on the user's behalf.
331331

332-
However, this token is short-lived. The token expires an hour after it is issued. Because the app is using the MSAL library, you do not have to implement any token storage or refresh logic. The `MsalService` caches the token in the browser storage. The `acquireTokenSilent` method first checks the cached token, and if it is not expired, it returns it. If it is expired, it makes a silent request to obtain a new one.
332+
However, this token is short-lived. The token expires an hour after it is issued. Because the app is using the MSAL library, you do not have to implement any token storage or refresh logic. The `MsalService` caches the token in the browser storage. The `acquireTokenSilent` method first checks the cached token, and if it is not expired, it returns it. If it is expired, it makes a silent request to obtain a new one.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,4 @@ Finally, open the `./src/app/calendar/calendar.component.html` file and replace
206206

207207
This loops through the collection of events and adds a table row for each one. Save the changes and restart the app. Click on the **Calendar** link and the app should now render a table of events.
208208

209-
![A screenshot of the table of events](./images/add-msgraph-01.png)
209+
![A screenshot of the table of events](./images/add-msgraph-01.png)
File renamed without changes.

0 commit comments

Comments
 (0)