Popularity
1.0
Declining
Activity
0.0
Stable
5
2
0

Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags: Miscellaneous    

url_unroller alternatives and similar packages

Based on the "Miscellaneous" category.
Alternatively, view url_unroller alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of url_unroller or a related project?

Add another 'Miscellaneous' Package

README

UrlUnroller

An example of unrolling short urls in Elixir.

Depends on HTTPoison running as an application. e.g. in your mix.exs

  def application do
    [applications: [:logger, :httpoison]]
  end

Usage:

> {status, result, response_info} = UrlUnroller.unroll("http://bit.ly/1Bx0zo8")
{:ok, "http://blog.semanticart.com/", ...}