Google API
WIP
# Get module for accessing specific api
Api = Exgoogle.urlshortener('v1')
{:ok, response} = Api.get(%{shortUrl: "http://www.example.com/testing"})
If available in Hex, the package can be installed as:
- Add
exgoogle
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:exgoogle, "~> 0.0.1"}]
end
```
- Ensure
exgoogle
is started before your application:
```elixir
def application do
[applications: [:exgoogle]]
end
```
- Add generator for API based on google schema.
- Add tests for working with Youtube API.