https://github.com/hongbo-miao/microsoft-graph-react
This project is showing how you can use Microsoft Graph in your React project
https://github.com/hongbo-miao/microsoft-graph-react
excel microsoft-graph react
Last synced: 11 months ago
JSON representation
This project is showing how you can use Microsoft Graph in your React project
- Host: GitHub
- URL: https://github.com/hongbo-miao/microsoft-graph-react
- Owner: hongbo-miao
- Created: 2017-08-04T18:12:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T00:26:31.000Z (almost 9 years ago)
- Last Synced: 2025-03-22T17:23:24.086Z (about 1 year ago)
- Topics: excel, microsoft-graph, react
- Language: JavaScript
- Homepage:
- Size: 74.2 KB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
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 React project.
Microsoft Graph gives you power to control 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 [create-react-app](https://github.com/facebookincubator/create-react-app).
Use `npm start` or `yarn start` to run. Navigate to [http://localhost:3000/](http://localhost:3000/).
## 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:3000`, `http://localhost:3000/home`.
Some of these info also need to be set up in the app [config file](https://github.com/Hongbo-Miao/microsoft-graph-react/blob/master/src/configs.js).
## Learn More
To learn more about Microsoft Graph, please check [this document](https://developer.microsoft.com/en-us/graph/).