Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 425
Bitwise Avatar asked Oct 08 '17 16:10

Bitwise


2 Answers

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)
like image 80
Dogbert Avatar answered Nov 15 '22 00:11

Dogbert


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
like image 38
ryanwinchester Avatar answered Nov 15 '22 00:11

ryanwinchester