To run the completed project in this folder, you need the following:
- Node.js installed on your development machine. If you do not have Node.js, visit the previous link for download options. (Note: This tutorial was written with Node version 12.18.2. The steps in this guide may work with other versions, but that has not been tested.)
- Either a personal Microsoft account with a mailbox on Outlook.com, or a Microsoft work or school account.
If you don't have a Microsoft account, there are a couple of options to get a free account:
- You can sign up for a new personal Microsoft account.
- You can sign up for the Office 365 Developer Program to get a free Office 365 subscription.
-
Open a browser and navigate to the Azure Active Directory admin center. Login using a personal account (aka: Microsoft Account) or Work or School Account.
-
Select Azure Active Directory in the left-hand navigation, then select App registrations under Manage.
Note: Azure AD B2C users may only see App registrations (legacy). In this case, please go directly to https://aka.ms/appregistrations.
-
Select New registration. On the Register an application page, set the values as follows.
- Set Name to
Vue Graph Tutorial
. - Set Supported account types to Accounts in any organizational directory and personal Microsoft accounts.
- Under Redirect URI, set the first drop-down to
Single-page application (SPA)
and set the value tohttp://localhost:3000
.
- Set Name to
-
Choose Register. On the Vue Graph Tutorial page, copy the value of the Application (client) ID and save it, you will need it in the next step.
- Edit the
./graph-tutorial/src/use/graph.ts
file and make the following changes. - Replace
AUTH_ID
with the Application Id you got from the App Registration Portal.
export const useConfig = () => {
const REDIRECT_URI = "http://localhost:3000";
const AUTH_ID = "YOUR_KEY_HERE"; // <- ID HERE
return {
REDIRECT_URI,
AUTH_ID
};
};
- In your command-line interface (CLI), navigate to the
graph-tutorial
directory and run the following command to install requirements.
npm install
or
yarn
- Run the following command in your CLI to start the application.
npm run serve
or
yarn serve
- Open a browser and browse to
http://localhost:3000
.