b34958d3af
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
25 lines
510 B
Elixir
25 lines
510 B
Elixir
defmodule Mobilizon.Service.HTTP.HostMetaClient do
|
|
@moduledoc """
|
|
Tesla HTTP Basic Client
|
|
with XML middleware
|
|
"""
|
|
|
|
use Tesla
|
|
alias Mobilizon.Config
|
|
|
|
@default_opts [
|
|
recv_timeout: 20_000
|
|
]
|
|
|
|
adapter(Tesla.Adapter.Hackney, @default_opts)
|
|
|
|
plug(Tesla.Middleware.FollowRedirects)
|
|
|
|
plug(Tesla.Middleware.Timeout, timeout: 10_000)
|
|
|
|
plug(Tesla.Middleware.Headers, [
|
|
{"User-Agent", Config.instance_user_agent()},
|
|
{"Accept", "application/xrd+xml, application/xml, text/xml"}
|
|
])
|
|
end
|