Bitwise
Bitwise

Reputation: 8461

Make HTTP request with Elixir and Phoenix

I'm a Ruby dev trying to get into elixir. I'm trying to interact with an API in order to learn a little Elixir. I'm basically trying to make an http request. In ruby the thing I'm trying to do would look like this.

require 'httparty'


url = "https://api.sportradar.us/nba/trial/v4/en/games/2016/11/05/schedule.json?api_key={api_key}"
response = HTTParty.get(url)
req = response.parsed_response

Pretty straightforward and simple. Now I have a json decoded response that I can use. How can I do this with Elixir and Phoenix?

Upvotes: 28

Views: 20923

Answers (2)

ryanwinchester
ryanwinchester

Reputation: 12127

Not only can you write your code as simply as before as shown in @Dogbert's example, but you can do cool things with pattern matching, too (and be as granular as you like)

Using HTTPoison and Poison, as well:

url = "https://api.sportradar.us/nba/trial/v4/en/games/2016/11/05/schedule.json?api_key={api_key}"

case HTTPoison.get(url) do
  {:ok, %{status_code: 200, body: body}} ->
    Poison.decode!(body)

  {:ok, %{status_code: 404}} ->
    # do something with a 404

  {:error, %{reason: reason}} ->
    # do something with an error
end

Upvotes: 25

Dogbert
Dogbert

Reputation: 222040

With httpoison (HTTP Client) and poison (JSON Encoder/Decoder) packages, this is almost as simple as your code which uses HTTParty:

url = "https://api.sportradar.us/nba/trial/v4/en/games/2016/11/05/schedule.json?api_key=#{api_key}"

response = HTTPoison.get!(url)
req = Poison.decode!(response.body)

Upvotes: 33

Related Questions