diff --git a/lib/httparrot/basic_auth_handler.ex b/lib/httparrot/basic_auth_handler.ex index 2920c11..fbb18b2 100644 --- a/lib/httparrot/basic_auth_handler.ex +++ b/lib/httparrot/basic_auth_handler.ex @@ -1,6 +1,4 @@ defmodule HTTParrot.BasicAuthHandler do - alias HTTParrot.GeneralRequestInfo - def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end diff --git a/lib/httparrot/post_handler.ex b/lib/httparrot/post_handler.ex index c3e4d30..2eadb96 100644 --- a/lib/httparrot/post_handler.ex +++ b/lib/httparrot/post_handler.ex @@ -13,12 +13,12 @@ defmodule HTTParrot.PostHandler do {{"application", "x-www-form-urlencoded", :*}, :post_form}], req, state} end - def post_form(req, state) do + def post_form(req, _state) do {:ok, body, req} = :cowboy_req.body_qs(req) post(req, [form: body, data: "", json: nil]) end - def post_json(req, state) do + def post_json(req, _state) do {:ok, body, req} = :cowboy_req.body(req) post(req, [form: [{}], data: body, json: JSEX.decode!(body)]) end