GraphApi.Error.AuthError exception (GraphApi v1.0.0-rc.1)

Copy Markdown View Source

Represents an authentication/authorization error from Entra ID.

Fields

  • :status - HTTP status code
  • :error - OAuth error code (e.g., "invalid_client")
  • :error_description - Human-readable error description

Summary

Types

t()

@type t() :: %GraphApi.Error.AuthError{
  __exception__: true,
  error: String.t() | nil,
  error_description: String.t() | nil,
  status: integer()
}