Work in progress - do not use unless you want things to break
Documentation can be found at https://hexdocs.pm/microsoft_graph.
# 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}