Interessante Bibliotheken
HTTP-Requests / JSON
Bibliotheken
- GitHub - edgurgel/httpoison: Yet Another HTTP client for Elixir powered by hackney
- GitHub - devinus/poison: An incredibly fast, pure Elixir JSON library
Beispiel
"https://api.datesapi.net/today"
|> HTTPoison.get!()
|> Map.get(:body)
|> Poison.decode!()
|> Map.get("result")