Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
108 lines (74 loc) · 5.73 KB

walkthrough.md

File metadata and controls

108 lines (74 loc) · 5.73 KB

Get started with Microsoft Graph in a Python app

This article describes the tasks required to get an access token from Azure AD and call Microsoft Graph. It walks you through the Microsoft Graph Connect Sample for Python and explains the main concepts that you implement to use the Microsoft Graph API. The article describes how to access Microsoft Graph by using direct REST calls.

Python Connect sample screenshot

Prerequisites

Register the application in Azure Active Directory

First, you need to register your application and set permissions to use Microsoft Graph. This lets users #to the application with work or school accounts.

Register the application

Register an app on the Microsoft App Registration Portal. This generates the app ID and password that you'll use to configure the app for authentication.

  1. #to the Microsoft App Registration Portal using either your personal or work or school account.

  2. Choose Add an app.

  3. Enter a name for the app, and choose Create application.

    The registration page displays, listing the properties of your app.

  4. Copy the application ID. This is the unique identifier for your app.

  5. Under Application Secrets, choose Generate New Password. Copy the app secret from the New password generated dialog.

    You'll use the application ID and app secret to configure the app.

  6. Under Platforms, choose Add platform > Web.

  7. Make sure the Allow Implicit Flow check box is selected, and enter http://localhost:5000/#/authorized as the Redirect URI.

    The Allow Implicit Flow option enables the OpenID Connect hybrid flow. During authentication, this enables the app to receive both sign-in info (the id_token) and artifacts (in this case, an authorization code) that the app uses to obtain an access token.

    The redirect URI http://localhost:5000/#/authorized is the value that the OmniAuth middleware is configured to use once it has processed the authentication request.

  8. Choose Save.

Configure and run the app

  1. Using your favorite text editor, open the _PRIVATE.txt file.
  2. Replace ENTER_YOUR_CLIENT_ID with the client ID of your registered application.
  3. Replace ENTER_YOUR_SECRET with the key you generated for your app.
  4. Start the development server by running python manage.py runserver.
  5. Navigate to http://localhost:5000/ in your web browser.

Receive an authorization code in your reply URL page

After the user signs in, the browser is redirected to your reply URL, the login/authorized route in connectsample.py, with an access token in the response. The sample stores the token as a session variable.

@app.route('/#/authorized')
def authorized():
    """Handler for login/authorized route."""
    response = msgraphapi.authorized_response()

    if response is None:
        return "Access Denied: Reason={0}\nError={1}".format( \
            request.args['error'], request.args['error_description'])

    # Check response for state
    if str(session['state']) != str(request.args['state']):
        raise Exception('State has been messed with, end authentication')
    session['state'] = '' # reset session state to prevent re-use

    # Okay to store this in a local variable, encrypt if it's going to client
    # machine or database. Treat as a password.
    session['microsoft_token'] = (response['access_token'], '')
    # Store the token in another session variable for easy access
    session['access_token'] = response['access_token']
    me_response = msgraphapi.get('me')
    me_data = json.loads(json.dumps(me_response.data))
    username = me_data['displayName']
    email_address = me_data['userPrincipalName']
    session['alias'] = username
    session['userEmailAddress'] = email_address
    return redirect('main')

Use the access token in a request to the Microsoft Graph API

With an access token, your app can make authenticated requests to the Microsoft Graph API. Your app must append the access token to the Authorization header of each request.

The Connect sample sends an email using the me/microsoft.graph.sendMail endpoint in the Microsoft Graph API. The code is in the call_sendmail_endpoint function in the connectsample.py file. This is the code that shows how to append the access code to the Authorization header.

	# Set request headers.
	headers = { 
	  'User-Agent' : 'python_tutorial/1.0',
	  'Authorization' : 'Bearer {0}'.format(access_token),
	  'Accept' : 'application/json',
	  'Content-Type' : 'application/json'
	}

Note The request must also send a Content-Type header with a value accepted by the Graph API, for example, application/json.

The Microsoft Graph API is a very powerful, unifiying API that can be used to interact with all kinds of Microsoft data. Check out the API reference to explore what else you can accomplish with Microsoft Graph.