Fetch Access Token Using Microsoft Graph API From SharePoint Online


In this article, I have explained how Microsoft Graph API works; then how to create an app to consume Microsoft Graph API in your web applications, mobile apps, and web API. Then, we will also discuss how to fetch access token to consume Graph API data from your applications.
Microsoft Graph API
Microsoft Graph API allows the data to interact with millions of users in the cloud.
Using Microsoft Graph API, you are able to create applications for your organization with single Graph API endpoints.
 
Use of Microsoft Graph API
  • Create, manage, and view Office 365 calendar events and also find your meeting times.
  •  Access information for the relevant people from Office 365 users.
Getting Started with Graph API
  • Register your application from Microsoft apps registration portal
  • Authenticate the user to fetch the access token through OAuth Protocol
  • Consume the data using Microsoft Graph API
  • Run the application.

Let’s discuss how to fetch the access token based on the user.

 Navigate to the app registration portal  https://apps.dev.microsoft.com
 Log in to your tenant account.

Microsoft Graph API

Click “Add an app” button to register your app.

Provide the Application Name and click Create.
Microsoft Graph API
After successful creation of the app, it shows what kind of application is going to consume the data from Microsoft Graph API.

Microsoft Graph API

Copy the unique Application Id later used in an API to fetch access token.
Generate the application secrets to authenticate the app.

Microsoft Graph API

Microsoft Graph API

In a Platform for web-based applications, use “WEB Platform” for Web API;  you can choose “WEB API Platform” and for mobile based applications use “Native Platform”.
Now, I have chosen “Web platform” to play with SharePoint.
 Provide the redirect URL for the application.

Microsoft Graph API

Provide the redirect URL  of your web application

The “Allow implicit flow” allows the option to enable the Open Id to connect hybrid and implicit flows. The hybrid flow enables the user to receive sign-in info for obtaining the access token.
 Click “Save” to complete the App registration.

Microsoft Graph API

 Fetch Access Token
  1. Host : https://login.microsoftonline.com
  2. POST: /{tenant}/common/oauth2/v2.0/token
  3. Content Type:  application/x-www-form-urlencoded
  4. Client ID:   *****************
  5. Client Secret: ********************
  6. grant_type: client_credentials
Tenant: The directory you want to request permission from (for ex; contoso.onmicrosoft.com).
Client ID: The unique Id generated from the app registration portal
Client Secret: The password generated from the app registration portal.
Scope: http://graph.microsoft.com/.default. This applies all the application permissions to the app.
grant_type: It will be client_credentials
 Code
  1. https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js”>
  2. “text/javascript”>
  3.     $(document).ready(function() {
  4.         requestToken();
  5.     });
  6.     var token;
  7.     function requestToken() {
  8.         $.ajax({
  9.             “async”true,
  10.             “crossDomain”true,
  11.             “url”https://cors-anywhere.herokuapp.com/https://login.microsoftonline.com/sharepointtechie.onmicrosoft.com/oauth2/v2.0/token”, // Pass your tenant name instead of sharepointtechie
  12.             “method”“POST”,
  13.             “headers”: {
  14.                 “content-type”“application/x-www-form-urlencoded”
  15.             },
  16.             “data”: {
  17.                 “grant_type”“client_credentials”,
  18.                 “client_id ““8baf0301-27df-44b1-b4fe-7911b9a918de”//Provide your app id  
  19.                 “client_secret”“**********”//Provide your client secret genereated from your app
  20.                 “scope “https://graph.microsoft.com/.default”
  21.             },
  22.             success: function(response) {
  23.                 console.log(response);
  24.                 token = response.access_token;
  25.                 document.getElementById(‘content’).innerHTML = token;
  26.             }
  27.         })
  28.     }
  29. <p id=”content”></p>
https://cors-anywhere.herokuapp.com //Remember to prefix it in URL Part.
Open SharePoint site -> Add a content editor webpart -> link the HTML file; it contains the above script  -> Click OK.
Here is the result in the console window. Now, we have successfully fetched the access token.

Microsoft Graph API