View Source Flowy.Support.OAuth.Client (Flowy v0.1.0)

This module is responsible for managing the OAuth clients.

Summary

Types

@type t() :: %Flowy.Support.OAuth.Client{
  access_token: OAuth2.AccessToken.t(),
  audience: String.t(),
  client_id: String.t(),
  client_secret: String.t(),
  oauth_client: OAuth2.Client.t(),
  scopes: [String.t()],
  site: String.t(),
  token_url: String.t()
}