https://github.com/ntodd/microsoft_graph
Elixir client for the Microsoft Graph API
https://github.com/ntodd/microsoft_graph
Last synced: 4 months ago
JSON representation
Elixir client for the Microsoft Graph API
- Host: GitHub
- URL: https://github.com/ntodd/microsoft_graph
- Owner: ntodd
- License: apache-2.0
- Created: 2022-08-30T18:09:24.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-26T14:44:43.000Z (about 3 years ago)
- Last Synced: 2025-10-24T01:59:26.620Z (8 months ago)
- Language: Elixir
- Size: 48.8 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Microsoft Graph API Client for Elixir
[](https://github.com/ntodd/microsoft_graph/actions/workflows/build.yml)
**Work in progress** - do not use unless you want things to break
Documentation can be found at .
## Installation
```elixir
# mix.exs
def deps do
[
{:microsoft_graph, "~> 0.2.0"}
]
end
```
You should also configure an OAuth2 adapter in your application config or Tesla
will attempt to use httpc with **insecure defaults**. Modern Phoenix
applications come with [Finch](https://github.com/sneako/finch) pre-configured, so it is a good option.
```elixir
# config.exs
config :oauth2, adapter: {Tesla.Adapter.Finch, name: MyApp.Finch}
```