Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faranak-cs/ms-graph-app
MS Graph App
https://github.com/faranak-cs/ms-graph-app
Last synced: about 1 month ago
JSON representation
MS Graph App
- Host: GitHub
- URL: https://github.com/faranak-cs/ms-graph-app
- Owner: faranak-cs
- Created: 2024-12-02T19:00:50.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-02T19:22:04.000Z (about 2 months ago)
- Last Synced: 2024-12-02T20:26:09.125Z (about 2 months ago)
- Language: HTML
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MS Graph App
A simple app that connects to Microsoft 365 and calls the Microsoft Graph API
## Steps
### GET team-id
Request
```
https://graph.microsoft.com/v1.0/me/joinedTeams
```### GET channel-id
Request
```
https://graph.microsoft.com/v1.0/teams/{team-id}/channels
```### GET message-ids
Request
```
https://graph.microsoft.com/beta/teams/{group-id-for-teams}/channels/{channel-id}/messages
```### GET replies from message-id
Request
```
https://graph.microsoft.com/beta/teams/{group-id-for-teams}/channels/{channel-id}/messages/{message-id}/replies
```## Tutorial
Follow the Microsoft Tutorial [here](https://learn.microsoft.com/en-gb/entra/identity-platform/quickstart-single-page-app-javascript-sign-in)