category
In this demo, we will show you how to authorize a user to access resources on an Intranet app with a bot. We will use Azure Active Directory for OAuth provider and Microsoft Graph for the protected resources.
When dealing with personal data, please respect user privacy. Follow platform guidelines and post your privacy statement online.
This sample is a simplified and reduced version of the sample "Single sign-on demo for enterprise apps using OAuth". There are notable differences:
- In this demo, we are targeting a traditional web page instead of single-page application
- Page navigation and refresh are allowed on a traditional web page, but are restricted on a single-page application
- We will only allow an authenticated user access to the page and the bot
- Since we only allow authenticated access
- We no longer have UI buttons for sign-in and sign-out, and only use plain HTML instead of a React app
- We no longer send the sign-in and sign-out event activity to the bot
- We only support a single OAuth 2.0) provider; in this demo, we are using Azure Active Directory
- Azure Active Directory supports PKCE (RFC 7636), which we are using PKCE to simplify setup
- If you are using GitHub or other OAuth providers that do not support PKCE, you should use a client secret
This demo does not include any threat models and is designed for educational purposes only. When you design a production system, threat-modelling is an important task to make sure your system is secure and provide a way to quickly identify potential source of data breaches. IETF RFC 6819 and OAuth 2.0 for Browser-Based Apps is a good starting point for threat-modelling when using OAuth 2.0.
You can browse to https://webchat-samples-ssointranet.azurewebsites.net/ to try out this demo.
This demo integrates with Azure Active Directory. You will need to set it up in order to host the demo.
- Clone the code
- Setup OAuth via Azure Active Directory
- Setup Azure Bot Services
- Prepare and run the code
To host this demo, you will need to clone the code and run locally.
- Clone this repository
- Create two files for environment variables,
/bot/.envand/web/.env
- In
/web/.env:
- Write
OAUTH_REDIRECT_URI=http://localhost:5000/api/oauth/callback
- When Azure Active Directory completes the authorization flow, it will send the browser to this URL. This URL must be accessible by the browser from the end-user machine
- Write
- In
If you want to authenticate on Azure Active Directory, follow the steps below.
- Go to your Azure Active Directory
- Create a new application
- Select "App registrations"
- Click "New registration"
- Fill out "Name", for example, "Web Chat SSO Sample"
- In "Redirect URI (optional)" section, add a new entry
- Select "Public client (mobile & desktop)" as type
- Instead of client secret, we are using PKCE (RFC 7636) to exchange for authorization token, thus, we need to set it to "Public client" instead of "Web"
- Enter
http://localhost:5000/api/oauth/callbackas the redirect URI
- This must match
OAUTH_REDIRECT_URIin/web/.envwe saved earlier
- This must match
- Select "Public client (mobile & desktop)" as type
- Click "Register"
- Save the client ID
- Select "Overview"
- On the main pane, copy the content of "Application (client) ID" to
/web/.env, it should looks be a GUID
OAUTH_CLIENT_ID=12345678abcd-1234-5678-abcd-12345678abcd
We prefer using Bot Channel Registration during development. This will help you diagnose problems locally without deploying to the server and speed up development.
You can follow our instructions on how to setup a new Bot Channel Registration.
- Save the Microsoft App ID and password to
/bot/.env
MICROSOFT_APP_ID=12345678-1234-5678-abcd-12345678abcdMICROSOFT_APP_PASSWORD=a1b2c3d4e5f6
- Save the Web Chat secret to
/web/.env
DIRECT_LINE_SECRET=a1b2c3.d4e5f6g7h8i9j0
When you are building your production bot, never expose your Web Chat or Direct Line secret to the client. Instead, you should use the secret to generate a limited token and send it to the client. For information, please refer to this page on how to generate a Direct Line token and Enhanced Direct Line Authentication feature.
During development, you will run your bot locally. Azure Bot Services will send activities to your bot through a public URL. You can use ngrok to expose your bot server on a public URL.
- Run
ngrok http -host-header=localhost:3978 3978 - Update your Bot Channel Registration. You can use Azure CLI or Azure Portal
- Via Azure CLI
- Run
az bot update --resource-group <your-bot-rg> --name <your-bot-name> --subscription <your-subscription-id> --endpoint "https://a1b2c3d4.ngrok.io/api/messages"
- Run
- Via Azure Portal
- Browse to your Bot Channel Registration
- Select "Settings"
- In "Configuration" section, set "Messaging Endpoint" to
https://a1b2c3d4.ngrok.io/api/messages
- Via Azure CLI
- Under both the
bot, andwebfolder, run the following:
npm installnpm start
- Browse to http://localhost:5000/ to start the demo
- Type, "Hello" in Web Chat
- The bot should be able to identify your full name by using your access token on Microsoft Graph
/bot/is the bot server/web/is the REST API for handling OAuth requests
GET /api/oauth/authorizewill redirect to Azure AD OAuth authorize page at https://login.microsoftonline.com/organizations/oauth2/v2.0/authorizeGET /api/oauth/callbackwill handle callback from Azure AD OAuthGET /api/directline/tokenwill generate a new Direct Line token for the React app- It will serve a static
index.html - During development-time, it will also serve the bot server via
/api/messages
- To enable this feature, add
PROXY_BOT_URL=http://localhost:3978to/web/.env - This will forward all traffic from
https://a1b2c3d4.ngrok.io/api/messagestohttps://localhost:3978/api/messages
- To enable this feature, add
This sample includes multiple parts:
- A basic web page that:
- Checks your access token or redirects to OAuth provider if it is not present or valid
- Is integrated with Web Chat and piggybacks your OAuth access token on every user-initiated activity through
channelData.oauthAccessToken
- Bot
- On every message, it will extract the OAuth access token and obtain user's full name from Microsoft Graph
- Developer has an existing Intranet web app that uses OAuth to access protected resources
- We assume the OAuth access token lives in the browser's memory and is accessible through JavaScript
- Access token can live in browser memory but must be secured during transmit through the use of TLS
- More about security considerations can be found at IETF RFC 6749 Section 10.3
- We assume the OAuth access token lives in the browser's memory and is accessible through JavaScript
- Website and bot conversation supports authenticated access only
- If the end-user is not authenticated or does not carry a valid authenticated token, they will be redirected to OAuth provider
- Bot will receive OAuth access token from the website
The .env files hold the environment variables critical to run the service. These are usually security-sensitive information and must not be committed to version control. Although we recommend keeping these keys in Azure Vault, for simplicity of this sample, we would keep them in .env files.
To ease the setup of this sample, here is the template of .env files.
MICROSOFT_APP_ID=12345678-1234-5678-abcd-12345678abcd
MICROSOFT_APP_PASSWORD=a1b2c3d4e5f6
OAUTH_CLIENT_ID=12345678abcd-1234-5678-abcd-12345678abcd
OAUTH_REDIRECT_URI=http://localhost:5000/api/oauth/callback
DIRECT_LINE_SECRET=a1b2c3.d4e5f6g7h8i9j0
To reset application authorization, please follow the steps below.
- On the AAD dashboard page, wait until "App permissions" loads. Here you see how many apps you have authorized
- Click "Change app permissions"
- In the "You can revoke permission for these apps" section, click the "Revoke" button below your app registration
- RFC 6749: The OAuth 2.0 Authorization Framework
- RFC 6819: OAuth 2.0 Threat Model and Security Considerations
- RFC 7636: Proof Key for Code Exchange by OAuth Public Clients
- IETF Draft: OAuth 2.0 for Browser-Based Apps
- Bot Framework Blog: Enhanced Direct Line Authentication feature
To make this demo simpler to understand, instead of refresh token, we are obtaining the access token via Authorization Code Grant flow. Access token is short-lived and considered secure to live inside the browser.
In your production scenario, you may want to obtain the refresh token with "Authorization Code Grant" flow instead of using the access token. We did not use the refresh token in this sample as it requires server-to-server communications and secured persistent storage, it would greatly increase the complexity of this demo.
To reduce complexity, this sample is limited in scope. In your production system, you should consider enhancing it and review its threat model.
- Refreshing the access token
- Using silent prompt for refreshing access token
- Some OAuth providers support
?prompt=nonefor refreshing access token silently through<iframe>
- Some OAuth providers support
- Using Authorization Code Grant flow with refresh token
- Save the refresh token on the server side of your web app. Never expose it to the browser or the bot
- This will also create a smooth UX by reducing the need for UI popups
- Using silent prompt for refreshing access token
- Threat model
- IETF RFC 6819 is a good starting point for threat-modelling when using OAuth 2.0
- 登录 发表评论
- 13 次浏览
最新内容
- 1 week 3 days ago
- 1 week 3 days ago
- 1 month ago
- 1 month ago
- 1 month ago
- 1 month ago
- 1 month ago
- 1 month ago
- 1 month ago
- 1 month ago