/microsoft_graph

Elixir client for the Microsoft Graph API

Primary LanguageElixirApache License 2.0Apache-2.0

Microsoft Graph API Client for Elixir

CI

Work in progress - do not use unless you want things to break

Documentation can be found at https://hexdocs.pm/microsoft_graph.

Installation

# 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 pre-configured, so it is a good option.

# config.exs

config :oauth2, adapter: {Tesla.Adapter.Finch, name: MyApp.Finch}