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?
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)
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With