Skip to content

Commit

Permalink
[nodejs][24.bot-authentication-msgraph] Fix readme.md (#677)
Browse files Browse the repository at this point in the history
* Order required permissions

* Fix auth documentation link
  • Loading branch information
enzocano authored and cleemullins committed Oct 11, 2018
1 parent 29eacfa commit bf657ef
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ This bot has been created using [Microsoft Bot Framework](https://docs.microsoft

This sample uses the bot authentication capabilities of Azure Bot Service. In this sample we are assuming the OAuth 2 provider
is Azure Active Directory v2 (AADv2) and are utilizing the Microsoft Graph API to retrieve data about the
user. [Check here](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-tutorial-authentication?view=azure-bot-service-4.0) for information about getting an AADv2
user. [Check here](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-authentication?view=azure-bot-service-4.0&tabs=csharp) for information about getting an AADv2
application setup for use in Azure Bot Service.
The [scopes](https://developer.microsoft.com/en-us/graph/docs/concepts/permissions_reference) used in this sample are
`OpenId email Mail.Send.Shared Mail.Read profile User.Read User.ReadBasic.All`.
The [scopes](https://developer.microsoft.com/en-us/graph/docs/concepts/permissions_reference) used in this sample are the following:
- `email`
- `Mail.Read`
- `Mail.Send.Shared`
- `openid`
- `profile`
- `User.Read`
- `User.ReadBasic.All`

## To try this sample
- Clone the repository
Expand Down

0 comments on commit bf657ef

Please sign in to comment.