|
1 | | -# Microsoft Graph Training Module - Build Python Django apps with Microsoft Graph |
| 1 | +--- |
| 2 | +page_type: sample |
| 3 | +description: This sample demonstrates how to use the Microsoft Graph to access data in Office 365 from a Python Django app. |
| 4 | +products: |
| 5 | +- ms-graph |
| 6 | +- microsoft-graph-calendar-api |
| 7 | +- office-exchange-online |
| 8 | +languages: |
| 9 | +- python |
| 10 | +--- |
| 11 | +# Microsoft Graph sample Python web app |
2 | 12 |
|
3 | | -This module will introduce you to working with Microsoft Graph to access data in Office 365 by building a Python Django web applications. |
| 13 | +This sample uses Microsoft Graph to access data in Office 365 by building a Python Django web application using the Azure AD v2 authentication endpoint. |
4 | 14 |
|
5 | | -## Lab - Build Python Django apps with Microsoft Graph |
| 15 | +## Prerequisites |
| 16 | +- [Python](https://www.python.org/) (with [pip](https://pypi.org/project/pip/)) installed on your development machine. If you do not have Python, visit the previous link for download options. (**Note:** This tutorial was written with Python version 3.7.9 and Django version 3.2.15 The steps in this guide may work with other versions, but that has not been tested.) |
| 17 | +- Either a personal Microsoft account with a mailbox on Outlook.com, or a Microsoft work or school account. |
6 | 18 |
|
7 | | -In this lab you will create a Python Django web application using the Azure AD v2 authentication endpoint to access data in Office 365 using Microsoft Graph. |
| 19 | +If you don't have a Microsoft account, there are a couple of options to get a free account: |
8 | 20 |
|
9 | | -- [Python Microsoft Graph tutorial](https://docs.microsoft.com/graph/tutorials/python) |
| 21 | +- You can [sign up for a new personal Microsoft account](https://signup.live.com/signup?wa=wsignin1.0&rpsnv=12&ct=1454618383&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https://mail.live.com/default.aspx&id=64855&cbcxt=mai&bk=1454618383&uiflavor=web&uaid=b213a65b4fdc484382b6622b3ecaa547&mkt=E-US&lc=1033&lic=1). |
| 22 | +- You can [sign up for the Microsoft 365 Developer Program](https://developer.microsoft.com/microsoft-365/dev-program) to get a free Office 365 subscription. |
10 | 23 |
|
11 | | -## Completed sample |
| 24 | +## Register a web application with the Azure Active Directory admin center |
12 | 25 |
|
13 | | -If you just want the completed sample generated by following this lab, you can find it here. |
| 26 | +1. Open a browser and navigate to the [Azure Active Directory admin center](https://aad.portal.azure.com). Login using a **personal account** (aka: Microsoft Account) or **Work or School Account**. |
14 | 27 |
|
15 | | -- [Completed project](demo) |
| 28 | +1. Select **Azure Active Directory** in the left-hand navigation, then select **App registrations** under **Manage**. |
16 | 29 |
|
17 | | -## Disclaimer |
| 30 | +1. Select **New registration**. On the **Register an application** page, set the values as follows. |
| 31 | + |
| 32 | + - Set **Name** to `Python Graph Tutorial`. |
| 33 | + - Set **Supported account types** to **Accounts in any organizational directory and personal Microsoft accounts**. |
| 34 | + - Under **Redirect URI**, set the first drop-down to `Web` and set the value to `http://localhost:8000/callback`. |
| 35 | + |
| 36 | +1. Choose **Register**. On the **Python Graph Tutorial** page, copy the value of the **Application (client) ID** and save it, you will need it in the next step. |
| 37 | + |
| 38 | +1. Select **Certificates & secrets** under **Manage**. Select the **New client secret** button. Enter a value in **Description** and select one of the options for **Expires** and choose **Add**. |
| 39 | + |
| 40 | +1. Copy the client secret value before you leave this page. You will need it in the next step. |
| 41 | + |
| 42 | + > [!IMPORTANT] |
| 43 | + > This client secret is never shown again, so make sure you copy it now. |
| 44 | +
|
| 45 | +## Configure the sample |
| 46 | + |
| 47 | +1. Rename the `oauth_settings.example.yml` file to `oauth_settings.yml`. |
| 48 | +1. Edit the `oauth_settings.yml` file and make the following changes. |
| 49 | + 1. Replace `YOUR_APP_ID_HERE` with the **Application Id** you got from the App Registration Portal. |
| 50 | + 1. Replace `YOUR_APP_PASSWORD_HERE` with the password you got from the App Registration Portal. |
| 51 | +1. In your command-line interface (CLI), navigate to this directory and run the following command to install requirements. |
| 52 | + |
| 53 | + ```Shell |
| 54 | + pip install -r requirements.txt |
| 55 | + ``` |
18 | 56 |
|
19 | | -**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.** |
| 57 | +1. In your CLI, run the following command to initialize the app's database. |
| 58 | +
|
| 59 | + ```Shell |
| 60 | + python manage.py migrate |
| 61 | + ``` |
| 62 | +
|
| 63 | +## Run the sample |
| 64 | +
|
| 65 | +1. Run the following command in your CLI to start the application. |
| 66 | +
|
| 67 | + ```Shell |
| 68 | + python manage.py runserver |
| 69 | + ``` |
| 70 | +
|
| 71 | +1. Open a browser and browse to `http://localhost:8000`. |
| 72 | +
|
| 73 | +## Code of conduct |
| 74 | +
|
| 75 | +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. |
| 76 | +
|
| 77 | +## Disclaimer |
20 | 78 |
|
21 | | -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information, see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. |
| 79 | +**THIS CODE IS PROVIDED _AS IS_ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.** |
0 commit comments