OAuth2.Serializer behaviour (OAuth2 v2.1.0) View Source

A serializer is responsible for encoding/decoding request/response bodies.

Example

defmodule MyApp.JSON do
  def encode!(data), do: Jason.encode!(data)
  def decode!(binary), do: Jason.decode!(binary)
end

Link to this section Summary

Link to this section Callbacks

Specs

decode!(binary()) :: map()

Specs

encode!(map()) :: binary()