Skip to content

Commit 79763be

Browse files
authored
Apply suggestions from code review
Corrected typos flagged by Acrolinx
1 parent 4d26929 commit 79763be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/active-directory/develop/userinfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The UserInfo endpoint is typically called automatically by [OIDC-compliant libra
2727

2828
## Consider using an ID token instead
2929

30-
The information in an ID token is a superset of the information available on UserInfo endpoint. Because you can get an ID token at the same time you get a token to call the UserInfo endpoint, we suggest getting the user's information from the token instead calling the UserInfo endpoint. Using the ID token instead of calling the UserInfo endopint eliminates up to two network requests, reducing latency in your application.
30+
The information in an ID token is a superset of the information available on UserInfo endpoint. Because you can get an ID token at the same time you get a token to call the UserInfo endpoint, we suggest getting the user's information from the token instead calling the UserInfo endpoint. Using the ID token instead of calling the UserInfo endpoint eliminates up to two network requests, reducing latency in your application.
3131

3232
If you require more details about the user like manager or job title, call the [Microsoft Graph `/user` API](/graph/api/user-get). You can also use [optional claims](active-directory-optional-claims.md) to include additional user information in your ID and access tokens.
3333

articles/active-directory/develop/v2-protocols-oidc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ The full OpenID Connect sign-in and token acquisition flow looks similar to this
237237

238238
In addition to the ID token, the authenticated user's information is also made available at the OIDC [UserInfo endpoint](userinfo.md).
239239

240-
To get a an access token for the OIDC UserInfo endpoint, modify the sign-in request as described here:
240+
To get an access token for the OIDC UserInfo endpoint, modify the sign-in request as described here:
241241

242242
```HTTP
243243
// Line breaks are for legibility only.

0 commit comments

Comments
 (0)