https://github.com/hongbo-miao/microsoft-graph-angular
This project is showing how you can use Microsoft Graph in your Angular 4 project
https://github.com/hongbo-miao/microsoft-graph-angular
angular excel microsoft-graph
Last synced: about 1 year ago
JSON representation
This project is showing how you can use Microsoft Graph in your Angular 4 project
- Host: GitHub
- URL: https://github.com/hongbo-miao/microsoft-graph-angular
- Owner: hongbo-miao
- Created: 2017-05-03T03:00:13.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-15T19:29:35.000Z (over 8 years ago)
- Last Synced: 2025-03-22T17:23:11.267Z (about 1 year ago)
- Topics: angular, excel, microsoft-graph
- Language: TypeScript
- Homepage:
- Size: 46.9 KB
- Stars: 11
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello Microsoft Graph!
This project is showing how you can use [Microsoft Graph](https://developer.microsoft.com/en-us/graph/) in your Angular 4 project.
Microsoft Graph gives you power to interact with Excel, Outlook, OneDrive, OneNote, Planner, Azure AD, SharePoint, etc.
## What this project does
It shows how you can Mircosoft Graph to login with a Microsoft account.

Once you login, it reads the contacts of your Microsoft account.

If you click "Write to Excel" button, it writes the contacts to an Excel file.

> Note before write to Excel, you need create an file called "demo.xlsx" in root folder of your OneDrive.
> Then create an table called "Table 1" which has two columns in the Excel like below:
> 
>
> This project try to be as simple as possible to help you quick start.
> In the future, we will provide a simple API to create empty file.
## How to run
This project was generated with [Angular CLI](https://github.com/angular/angular-cli).
Use `npm start` or `ng serve` to run. Navigate to [http://localhost:4200/](http://localhost:4200/).
## How to create a project by yourself
To create your app, you need get an App ID at [https://apps.dev.microsoft.com/](https://apps.dev.microsoft.com/).
Configure the app with the permissions you need. Check **Allow Implicit Flow**. Update **Redirect URLs**.
This demo needs `Contacts.Read`, `Files.ReadWrite` permissions. The Redirect URLs are `http://localhost:4200`, `http://localhost:4200/home`.
Some of these info also need to be set up in the app [config file](https://github.com/Hongbo-Miao/microsoft-graph-angular/blob/master/src/app/shared/configs.ts).
## Learn More
To learn more about Microsoft Graph, please check [this document](https://developer.microsoft.com/en-us/graph/).