Skip to content

Commit 4ff3f6b

Browse files
content updates
1 parent 5ffdc65 commit 4ff3f6b

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

msal-javascript-conceptual/browser/instance-aware.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,13 @@ http://localhost:30662/
3939

4040
MSAL will read the data returned in this response and use it to construct the endpoint to trade the code for tokens. If the `cloud_instance_host_name` is different from the one used in the `/authorize` call, MSAL must perform endpoint discovery before making the request to the `/token` endpoint. The authority host name may change if the user's home tenant is in a different cloud.
4141

42-
4342
## Using the correct graph hosts
4443

4544
The MSAL response object will also inform you which graph hosts to use for a given account. The Graph hosts are specific to the tenant that the user's account resides in, and must change if `instance_aware=true` is used.
4645

4746
### Difference Between cloud_graph_host_name and msgraph_host
4847

49-
The STS will return two graph host names: `cloud_graph_host_name` and `msgraph_host`. `cloud_graph_host_name` is the AAD graph host, and is used for [AAD graph calls](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-graph-api). `msgraph_host` is the Microsoft Graph, and is used for [MS Graph API calls](https://docs.microsoft.com/en-us/graph/overview).
48+
The STS will return two graph host names: `cloud_graph_host_name` and `msgraph_host`. `cloud_graph_host_name` is the Azure AD Graph host, and is used for Azure AD Graph API calls. `msgraph_host` is the Microsoft Graph, and is used for [MS Graph API calls](/graph/overview.md).
5049

5150
### Using the graph hosts from the response
5251

msal-javascript-conceptual/browser/login-user.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ try {
4444
}
4545
```
4646

47-
Or you can send a set of [scopes](./request-response-object.md#scopes) to pre-consent to:
47+
Or you can send a set of [scopes](./resources-and-scopes.md) to pre-consent to:
4848
- Popup
4949
```javascript
5050
var loginRequest = {

msal-javascript-conceptual/browser/logout.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,4 @@ Events will be emitted when logout succeeds or fails and when the popup is opene
206206
Dig into more advanced topics, such as:
207207

208208
- [Caching](./caching.md)
209-
- [Advanced Configuration Options](./configuration.md)
210-
211-
...and [more](../README.md#advanced-topics)!
209+
- [Advanced Configuration Options](./configuration.md)

0 commit comments

Comments
 (0)