Hi,
I encountered an issue while using your lib to consume API.ai's api. A GET request is actually sending double quotes in body. After hours of debugging (I thought something was wrong with the headers sent), I found that we encode an empty body with Poison.encode even for a GET request.
This behavior causes API.ai to throw a 403 forbidden response.
I'm doing my first step in Elixir and functional programming, so I lack deep knowledge in how to solve in good manner this issue. Below is my attempt:
adapters/httpoison_adapter.ex, line ~24:
def process_request_body(""), do: "" #tried to return nil but it's not catched by hackney library
def process_request_body(body), do: Poison.encode!(body)
You can check this behavior using http://requestb.in/ and looking at the raw body of your GET request. it should be empty, it's not.
Looking for your advice and a proper fix!