forked from jasonjoh/python_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
11 lines (11 loc) · 710 Bytes
/
Copy pathhome.html
File metadata and controls
11 lines (11 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE.txt in the project root for license information. -->
{% extends "tutorial/layout.html" %}
{% block content %}
<div class="jumbotron">
<h1>Python Outlook Sample</h1>
<p>This example shows how to get an OAuth token from Azure using the <a href="https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols-oauth-code" target="_blank">authorization code grant flow</a> and to use that token to make calls to the Outlook APIs.</p>
<p>
<a class="btn btn-lg btn-primary" href="{{signin_url}}" role="button" id="connect-button">Connect to Outlook</a>
</p>
</div>
{% endblock %}