Skip to content

These articles are owned by Netcompany Norway.

Notifications You must be signed in to change notification settings

birk-astrup/articles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 

Repository files navigation

Learn How Authentication and Authorization Flow Works for Content Page in Microsoft Teams

Netcompany logo

I work as a Software Consultant at Netcompany Norway - an international company with more than 2000 employees in 6 countries that provides valuable expertise and experience to help organizations with digital transformation. Currently, they are exploring new fields and ways to automate time-consuming processes using Microsoft cloud services in Microsoft Teams (MS Teams). One of them, which this article emphasizes on, is to integrate a content page (web app) in MS Teams that can interact with Microsoft Graph API (MS Graph) for generating an Excel file on user's OneDrive.

The Flexibility of Microsoft Teams and the MS Graph API

Microsoft Teams is a collaboration app with 13 million active users daily. A hub for teamwork that combines chat, video meetings, calling, and files into a complete integrated app. What makes MS Teams so unique is the flexibility it provides with integrated web apps.

//Er det appen som kan kommunisere med Graph eller er det organisasjonen? Organizations today can create content pages (web apps), integrate it with MS Teams, and, communicate with MS Graph API, a Restful API endpoint to interact with Office, OneDrive, SharePoint, Outlook and so on. For instance, a project manager needs to move worked hours for 100 employees from system A to B, one can imagine the amount of time and resources such work takes. The manager must create an excel file, add title and records, and store each file on OneDrive once finished for every employee. This can take several hours perhaps days to complete. With the MS Graph API combined with MS Teams we can automate such process to take seconds. It supports various endpoints for Excel, and many other Microsoft cloud services.

If you are interested and want to try the MS Graph API’s endpoints, check out Microsoft Graph Explorer.

Outcome

The end-goal of this article is to generate an Excel file and store it on a user's OneDrive, for this to happen we must follow these steps:

Step 1 - Authenticate user Step 2 - Get access-token Step 3 - Access the MS Graph API

What is Azure Active Directory (AAD), and why do we need it? In order to secure our data from unauthorized users, we must ensure two things; they belong to the correct domain (company), and consent to provided access permisions like (User.Read, File.Read).

This article won't cover how to integrate a web application with Microsoft Teams using App Studio. Here's a nice article by Pär Joona that covers it very well.

Silent Authentication with OAuth 2.0

In this article, we'll use Silent Authentication, a authentication flow for tabs that uses OAuth 2.0. It's recommended to have some basic understanding of OAuth 2.0, here's a good overview. In general, it reduces number of times a user needs to enter their login credentials by silently refreshing the authentication token (hides the login popup page if user has already signed in). This creates a pleasent user experience.

Prerequisites

  • Microsoft Teams account
  • Office 365 Developer subscription (Required in order to create apps in MS Teams)
  • Register app in App registriation to integrate it with Microsoft identity platform and call MS Graph API
  • A deployed web application (We've used Netlify)

// Hva betyr siste del av denne setningen? The main outcome of this article is to generate an Excel file on a user's OneDrive. For this to happen

Did you know that App Registration in Azure AD offers developers a simple, secure, and flexible way to sign-in and acess Azure resources like Graph API. Additionally, one can grant spesified permissions on each user to preserve a secure system from malicious attacks.

Authenticate User

This part covers how to authenticate a user, what packages we need to install, the setup process, and how to acquire an id-token. Id-token is a part of OpenID Connect flow which the client can use to authenticate the user.

Note: Id-tokens should be used to validate that a user is who they claim to be and get additional useful information about them - it shouldn't be used for authorization in place of an access-token.

1. Installation

  1. Microsoft Teams SDK
  2. ADAL.js SDK

2. Install NPM Packages

In order to display the content page and communicate with Teams context such as retrieve user details, install Microsoft Teams JavaScript client SDK. Additionally, you also need to install Azure Active Directory Library SDK to perform authentication operations.

The framework we are using in this example is React with TypeScript to easily create and manage web components. However, if you don't want to use a framework - plain JavaScript works as well. Most examples in the Microsoft docs show the authentication process with either plain JavaScript, Angular, or NodeJS.

Be aware that the underlying authentication flow is generally the same out their, but with few differences depending on the framework.

Let us begin with installing these two packages, open your terminal and run:

npm install --save adal-angular
npm install --save @microsoft/teams-js

Note: Currently there is one NPM package providing both the plain JS library (adal.js) and the AngularJS wrapper (adal-angular.js). In short, adal-angular works fine with plain JavaScript or TypeScript even though the package name has Angular.

If you are using TypeScript, there is a @types package for adal-angular. Having types on a package you haven't worked on before is extremely handy, especially when you want to see the abilities/limitations a package offers without needing to open the documentation for every object or method.

# Only if your using TypeScript
npm install --save @types/adal-angular

3. Import Packages

Once you've installed the NPM packages, the next step is to import these packages in your JS/TS file. The modules we need to import is AuthenticationContext for handling authentication calls to Azure AD, and MS Teams to integrate and display the content page (web app) within the Teams app. Last but not least, if you are using TypeScript, you can go ahead and add the Option interface which shows what properties can be added to an object (the example for this will be shown later).

import AuthenticationContext, { Options } from 'adal-angular';
import * as microsoftTeams from '@microsoft/teams-js';

4. Initialize Microsoft Teams

Since MS Teams is showing the content page using iframe (a nested browsing context) we need to make sure the user is a part of the MS Teams context before running authentication. It means authentication process runs only if the content page is opened within MS Teams. This does not necessarily mean the app is fully secure but ensures that authentication flow only runs for MS Teams users.

To use the MS Teams services, we must first initialize Microsoft teams:

microsoftTeams.initialize();

This way the content page is displayed in MS Teams through the embedded view context.

5. Setup Configuration

The setup configuration is pretty straight forward. But before we setup the configuration with information present in Azure AD to authenticate a user, we must add the redirect URI in the list of redirect URIs for the Azure AD app. Once the user authentication is //gir det mer mening ĂĄ skrive: Azure AD will check if the redirect URI is defined in the azure portal. eller noe i den duren? successful, Azure AD will check if the redirect URI is defined in Azure AD. If it's defined, Azure AD will add an access-token and return it as a query string which the developer can use to access MS Graph API. If Azure AD doesn't find the redirect URI, it returns a popup page saying: The reply url specified in the request does not match the reply urls configured for the application.

But how does the authentication flow look when we try to login a user? Here's a basic example that illustrates the authentication flow:

// 1. Login method is executed

// 2. A popup windows is shown: wait for user credentials
login.microsoft.com?clientId=asdfasdfasdf&redirectUri=domain.com/auth/silent-end

// 3. Login successful (only if credentials are correct)

// 3. Azure AD sees the request: if the redirect URI is specified, respond with id token in the query string
domain.com/idToken=blablabla

Now that we have a basic understanding of the authentication flow, and the relevancy of redirect URI, the next step is to setup the config object. This object contains information that is required for Azure AD to authenticate the user, and redirect them to the right domain with the right token. This information such as clientID and tenant can be found in the overview page in Azure AD. //Azure Portal?

let config: Options = {
    tenant: 'tenant_id', // Can be found in Azure AD
    clientId: 'client_id', // Can be found in Azure AD
    redirectUri: 'URI' + '/auth/silent-end', // Important: URL must be registered in Redirect URL otherwise it won't work.
    cacheLocation: "localStorage",
    popUp: true, // Set this to true to enable login in a pop-up window instead of a full page redirect.
    navigateToLoginRequestUrl: false,
};

6. Create an Authentication Context

In order to access methods like login, logout, getCachedUser, getCachedToken, acquireToken and so on, we need to create an AuthenticationContext and pass config object as argument. This establishes like a communication bridge between the web app and Azure AD for authenticating users.

let authContext = new AuthenticationContext(config);

Now everytime you use authContext, it will perform operations based on what is defined in the config object. This means if your application interacts with various of Azure AD domains, you can configure multiple contexts.

7. Login User

Once we have created an AuthenticationContext(config), the next step is check if the user is cached. Keep in mind that the whole authentication process is done through MicrosoftTeams.getContext({...auth process goes here...}) to ensure the auth process only runs within MS Teams.

microsoftTeams.getContext((context) => {
    let user = authContext.getCachedUser();
    if (user) {
        // Use is now authenticated
        // Get access_token to access MS Graph API (This part is found in **get access token** section below)
    } else {
        // Show login popup
        authContext.login();
    }
}

As shown above, before we can authenticate the user, we check if the user is cached (already stored in memory). If user is not cached, we invoke the authContext.login() method which opens up a popup page that waits for user credentials. Remember to set the popup property to true in configs otherwise the popup page won't show. If user has already signed in in MS Teams, the popup page uses that context to automatically sign in the user. It means the popup page will only be visible within 1-2 seconds.

8. Handle Cache

To reduce number of authenticate requests to the server once the user is logged in, we need to cache the user. Working with cache in general is always a challenge in terms of deciding when to change the old value with the new value. However, Adal.js provides an easy and convenient way to handle cache with methods like authContext.getCachedUser(), authContext.getCachedToken(), and 'authContext.clearCache()'.

So the way we handle cache is by simply checking if the expected user (from MS Teams context) is the same as the cached user (from Azure AD):

// Clear cache if expected user is not the same as cached user
microsoftTeams.getContext((context) => {

    let user = authContext.getCachedUser();
    if (user.userName !== context.upn) { // upn stands for user principal name, same as username (based on the Internet standard RFC 822)
        authContext.clearCache();
    }

}

As shown in the example above, if expected user is not the same as cached user, we clear the cache. Next time the user enters the content page, he must login again. This step is necessary to keep track of the current user, otherwise, we end up with a conflict between old and new data in the authentication process.

9. Get Id-token

If authentication is successful and user is cached, Azure AD returns an id-token which means the user is authenticated. So whenever we need to access the MS Graph API, we check if the id-token exists first to make sure the user is still logged in, and the token hasn't expired.

In order to get the id-token, we wait for an event to be triggered by the user:

return (
    <div>
        <button onClick={ () => generateExcelFile() }>Generate Excel file</button>
    </div>
);

When the user clicks on the button to generate an Excel file, the function generateExcelFile() is invoked. This function runs a method authContext.aquireToken(resource: string, callback: TokenCallback) to check if the id token exists or not by returning 3 arguments errorDesc, token, and error:

function generateExcelFile() {
    microsoftTeams.getContext((context) => {
        authContext.acquireToken(config.clientId, function (errorDesc, token, error) {
            if (error) {
                // Show sign-in button
            }
            else {
                // Get cached access_token
                // Create Excel File
                // Access MS Graph API (to store Excel file on OneDrive)
            }
        });
    })
}

As shown above, we check if an error is returned which can be a message of type token renewal has failed or token does not exist. If error is present, we can show a sign-in button where the user can try to login again. If error is not present, we can go ahead and get the access token, create an Excel file, and then store it in the user's OneDrive using the MS Graph API.

Get Access-token

Once the user is authenticated, the next step is to authorize the user. At first, these two words seems synonymous, but must not be mixed. Authentication means confirming the user's identity and authorization means being allowed to access the domain. In other words, to allow a the content page to interact with the MS Graph API by generating an excel file or get user details, the user must authorize it. This is done by showing a popup page with a list of permissions the user can consent to or deny.

Application or Delegate

There are two permission types (Application or Delegate), or ways to get an access token. If a daemon service wants to sends emails on a weekly-basis (user authentication is not required) this is known as Application requests. If actions are based on user events (user authentication is required) this is known as Delegate requests. Admins can consent to permissions depending on if the requests comes from a daemon or an user in Azure AD.

# User based
https://login.microsoftonline.com/${context.tid}/oauth2/v2.0/authorize?{queryParams}

# Application based
https://login.microsoftonline.com/${context.tid}/oauth2/v2.0/token?{queryParams}

As mentioned, to open the gateway to interact with the MS Graph API we need an access_token. To get the access-token, we must navigate to the authorizeEndpoint with the query parameters defined in the queryParams object. The authorization endpoint also needs a tenant id which can be found in the MS graph context or the config object defined above.

 let queryParams = {
    client_id: config.clientId,
    response_type: "token",
    response_mode: "fragment",
    scope: "https://graph.microsoft.com/User.Read openid",
    redirect_uri: window.location.origin + '/auth/autherization',
    prompt: 'login',
    nonce: 1234,
    state: 5687,
    login_hint: context.loginHint,
};

let authorizeEndpoint = `https://login.microsoftonline.com/${context.tid}/oauth2/v2.0/authorize?${toQueryString(queryParams)}`;
window.location.assign(authorizeEndpoint);

Once we navigate to the authorization endpoint, Azure AD will check if the query parameters are correct, and most importantly if the user is authenticated. If those criterias are true, it will return an access_token as a query string on the url path. Since we are working with a single page application, we need a way to capture this access_token. The simplest way is to create a component that runs once the authorizationEndpoint is triggered.

Setup Routing for the Authorization Endpoint

To setup routing for the authorization endpoint, we use the react-router-dom library. Then we define an exact path /auth/authorization which redirects to the Authorization component.

import React from 'react';
import Home from './Home';
import { BrowserRouter as Router, Route } from 'react-router-dom';
import Authorization from './Authorization';

const Navigation = () => {
    return (
        <Router>
            <div>
                <Route path="/" exact component={Home}></Route>
                <Route path="/auth/authorization" exact component={Authorization}></Route>
            </div>
        </Router>
    );
}

export default Navigation;

Capture Access-token and Redirect Back to Homepage

Once the redirect path is triggered, we do two things: cache the access_token, and then redirect back to the home page.

import React from 'react';
import { useHistory } from 'react-router-dom'
import qs from 'querystring';

const Authorization = (props: any) => {
    let history = useHistory();
    let querystring = qs.parse(props.location.hash)
    window.localStorage.setItem('access_token', querystring['#access_token'].toString())
    history.push('/'); // redirect back to home page
    return (
        <div>
            <h1>This component is only used to cache the access token, and then redirect back to home page</h1>
        </div>
    );
}

export default Authorization;

Note: If the authorization process fails, you can show an error message here. But make sure you put the redirect code inside a conditional statement.

Access the MS Graph API

With succeful user authentication and an access-token, we move on to the final step where we use the MS Graph API to access data in Azure AD, Office 365 services, Office 365, Enterprise Mobility, Security services, Windows 10 services, and more. For this example, we'll generate an excel file, and store it on user's OneDrive.

The library we use to create an excel file is Sheet.js, install it by following these steps here.

function generateExcelFile() {
    microsoftTeams.getContext((context) => {
        authContext.acquireToken(config.clientId, function (errorDesc, token, error) {
            if (error) {
                //  Show a sign in button
                // Renew token if it fails
            }
            else {
                // Get cached access_token
                let access_token = window.localStorage.getItem('access_token');

                if (access_token) {
                    const headers = new Headers();
                    headers.append('Authorization', `Bearer ${access_token}`);
                    headers.append('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');

                    var graphEndpoint = "https://graph.microsoft.com/v1.0/drive/root:/mellomprosjekt/file1.xlsx:/content";

                    // Create excel file
                    const book = XLSX.utils.book_new();
                    const sheet = XLSX.utils.aoa_to_sheet(['data1', 'data2']);
                    XLSX.utils.book_append_sheet(book, sheet, 'sheet1');
                    let workBook = XLSX.write(book, { bookType: 'xlsx', type: 'array' }); // type must be array otherwise it will be corrupt in OneDrive

                    console.log('workBook', workBook);
                    let init: RequestInit = {
                        method: 'PUT',
                        headers: headers,
                        body: workBook,
                    };

                    fetch(graphEndpoint, init)
                        .then(resp => resp.json())
                        .then(data => console.log(data))
                }
            }
        });
    })
}

###Side Note According to the documentation and examples it seems that it's possible to get access token just by using the Adal.js SDK library. That would be the easiest and most practical way of doing so by utilizing the library. For my example, I did not manage to get the access-token but instead got the id-token. The issue here is the aud property (identifies the intented recipient) in id-token is set to client id which is wrong, it must be graph.microsoft.com.

If look at the access-token retreived from the authorization request the aud property is graph.microsoft.com which is correct. This way of getting first the id-token and then the access-token feels a bit hacky as shown in the Get access token section. However, I'm sure there are better ways of doing so.

Here's an example which uses the convenient approach (it did not work for me).

authContext.aquireToken('https://graph.microsoft.com', (errorDesc, token, error) => {})

I have tried many ways, but could not get the access-token and instead got an id-token. In order to access the MS Graph API, an access-token is required. After a couple of trials, I went with an approach which works, but I'm sure there are better ways of doing it. The best ways is of course to get the access token by running aquireToken method.

Summary

We have covered how to authenticate a user, authorize said user to get the access-token, use the access-token to access the MS Graph API, and last but not least, generate an Excel file on the user's OneDrive. In order to make the authentication and authorization flow work, remember to wrap the flow inside the MS Teams context otherwise the content page won't be displayed. If we put the code outside the MS Teams context, the code will still work, but will not be displayed in MS Teams.

Here's a high-level overview of what you need to make the content page (web app) work in MS Teams.

microsoftTeams.initialize();
microsoftTeams.getContext(context => {
    // This is where we perform the authentication and autherization flow
});

Authentication in Microsoft, or any other languages is always a challenge thus there are many ways to do it and concerns to be aware of in terms of security. Either way, it's recommended to perform security tests and perhaps contact those that have done it before. In general, authentication can never be 100 % secure, but we can try our best to make it as secure as possible following good guidelines provided by Microsoft.

Resources

About

These articles are owned by Netcompany Norway.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published