ProductPromotion
Logo

Elixir

made by https://0x3d.site

GitHub - Zensavona/elixtagram: :camera: Instagram API client for the Elixir language (elixir-lang)
:camera: Instagram API client for the Elixir language (elixir-lang) - Zensavona/elixtagram
Visit Site

GitHub - Zensavona/elixtagram: :camera: Instagram API client for the Elixir language (elixir-lang)

GitHub - Zensavona/elixtagram: :camera: Instagram API client for the Elixir language (elixir-lang)

Elixtagram

Elixtagram is a simple Instagram client for Elixir.

Build Status Inline docs Coverage Status Deps Status hex.pm version hex.pm downloads License

Read the docs

I've created an example application with Phoenix here

Usage

Installation

Add the following to your mix.exs

...

def application do
  [mod: {InstagramPhoenixExample, []},
   applications: [:elixtagram]]
end

...

defp deps do
  [{:elixtagram, "~> 0.6.0"}]

...

Configuration

Elixtagram will first look for application variables, then environment variables. This is useful if you want to set application variables locally and environment variables in production (e.g. on Heroku). That being said, I recommend using Dotenv locally.

config/dev.exs

config :elixtagram,
  instagram_client_id: "YOUR-CLIENT-ID",
  instagram_client_secret: "YOUR-CLIENT-SECRET",
  instagram_redirect_uri: "YOUR-REDIRECT-URI"

.env

INSTAGRAM_CLIENT_ID=YOUR-CLIENT-ID
INSTAGRAM_CLIENT_SECRET=YOUR-CLIENT-SECRET
INSTAGRAM_REDIRECT_URI=YOUR-REDIRECT-URI

You can also configure these programatically at runtime if you wish:

iex(1)> Elixtagram.configure("YOUR-CLIENT-ID", "YOUR-CLIENT-SECRET", "YOUR-REDIRECT-URI")
{:ok, []}

Usage

Before using Elixtagram, it needs to be initialised. Run Elixtagram.configure/0 or Elixtagram.configure/1 before any other commands

Authenticate a user

# Generate a URL to send them to
iex(1)> Elixtagram.authorize_url!
"https://api.instagram.com/oauth/authorize/?client_id=XXX&redirect_uri=localhost%3A4000&response_type=code"

# Instagram will redirect them back to your INSTAGRAM_REDIRECT_URI, so once they're there, you need to catch the url param 'code', and exchange it for an access token.

iex(2)> code = "XXXXXXXXXX"
"XXXXXXXXXX"
iex(3)> {:ok, access_token} = Elixtagram.get_token!(code: code)
{:ok, "XXXXXXXXXXXXXXXXXXXX"}

# Now we can optionally set this as the global token, and make requests with it by passing :global instead of a token.
iex(4)> Elixtagram.configure(:global, access_token)
:ok

Unauthenticated endpoints

There are a lot of endpoints you can use without an access token from a user. Most methods can be called in one of three ways, for example:

# Unauthenticated
iex(1)> Elixtagram.tag("lifeisaboutdrugs")
%Elixtagram.Model.Tag{media_count: 27, name: "lifeisaboutdrugs"}

# Explicitly authenticated
iex(1)> Elixtagram.tag("lifeisaboutdrugs", "XXXXXXXXXXXXXXXXX")
%Elixtagram.Model.Tag{media_count: 27, name: "lifeisaboutdrugs"}

# Implicitly authenticated (only works if you have configured a global token)
iex(1)> Elixtagram.tag("lifeisaboutdrugs", :global)
%Elixtagram.Model.Tag{media_count: 27, name: "lifeisaboutdrugs"}

Authenticated endpoints

Authenticated endpoints are mostly things which are about getting the current user's stuff

iex(1)> Elixtagram.user_feed(%{count: 2}, "XXXXXXXXXXXXXXXXX")
[%Elixtagram.Model.Media{...}, %Elixtagram.Model.Media{...}]

iex(2)> Elixtagram.user_feed(%{count: 2}, :global)
[%Elixtagram.Model.Media{...}, %Elixtagram.Model.Media{...}]

All of the available methods and the ways to call them are in the docs

Running the tests

TL;DR: mix test

Longer answer:

$ mix deps.get
Running dependency resolution
All dependencies up to date

$ mix test
...........................................................................................

Finished in 17.6 seconds (2.9s on load, 14.7s on tests)
91 tests, 0 failures

Randomized with seed 846369

$ mix coveralls
...........................................................................................

Finished in 13.1 seconds (1.9s on load, 11.2s on tests)
91 tests, 0 failures

Randomized with seed 972312
----------------
COV    FILE                                        LINES RELEVANT   MISSED
100.0% lib/elixtagram.ex                             806       49        0
100.0% lib/elixtagram/api/base.ex                     84       24        0
100.0% lib/elixtagram/api/comments.ex                 30        3        0
100.0% lib/elixtagram/api/follows.ex                  37        5        0
100.0% lib/elixtagram/api/likes.ex                    30        3        0
100.0% lib/elixtagram/api/locations.ex                56       12        0
100.0% lib/elixtagram/api/media.ex                    37        6        0
100.0% lib/elixtagram/api/tags.ex                     33        5        0
100.0% lib/elixtagram/api/users.ex                    59       14        0
100.0% lib/elixtagram/config.ex                       42       10        0
  0.0% lib/elixtagram/exception.ex                     3        0        0
  0.0% lib/elixtagram/model.ex                        38        0        0
100.0% lib/elixtagram/oauth_strategy.ex               50       13        0
100.0% lib/elixtagram/parser.ex                       48       10        0
[TOTAL] 100.0%
----------------

Status

It's mostly complete, but these things are missing:

  • Pagination of results for certain data types
  • Real time subscriptions
  • Secure requests

Changelog

0.6.0

  • Merge PR which updates the new API url for Elixtagram.user_feed/2 (PR #17, thanks @sudostack!)
  • Merge PR which adds support for the new carousel_media type (PR #19, thanks @mendab1e!)

0.5.1

  • Merge PR which better handles cases where API request limiting kicks in (PR #18, thanks @mendab1e!)

0.5.0

  • Merge PR #16 which implements a paginated version of Elixtagram.tag_recent_media: Elixtagram.tag_recent_media_with_pagination (thanks @mendab1e!)

0.4.0

  • Merge PR #15 from @mendab1e which adds the videos field to Media (Thanks!)
  • Update the oauth2 library to version 0.9.1 which closes Issue #14 from @radzserg (Thanks, sorry it took me so long to get to this!)
  • Update httpoison to 0.11.1
  • Update poison to 3.1.0

0.3.0

  • Change the Elixtagram.get_token! function to return a tuple like {:ok, token}
  • Update dependencies
  • Merge a pull request which fixes an issue relating to a newer version of OAuth2 (thanks @radzserg)

0.2.9

  • Add user_recent_media_with_pagination (thanks again @deadkarma!)

0.2.8

0.2.7

  • Add the type attribute to Media in order to tell the difference between 'image' and 'video' types (thanks @deadkarma!)

0.2.6

  • Add the new created_time and users_in_photo to Media (thanks @deadkarma!)
  • Add new required OAuth permissions request (thanks @bobishh!)

0.2.5

  • Add credo in dev environment
  • Improve code readability and resolve credo warnings (thanks @rrrene!)

0.2.4

  • Update the OAuth2 library to 0.5 (thanks @steffenix!!)
  • add a couple more test cases around pagination to get back to 100% coverage

0.2.3

  • Minor pagination bugfix - was throwing a KeyError when requesting a paginated user_follows and on the last page of results.

0.2.2

  • Add pagination support for user_follows, this doesn't break the existing user_follows/2 and user_follows/3 API.

0.2.1

  • Add Elixtagram.authorize_url!/3, which takes a state argument to pass back to the callback url. This is useful for things like CSRF protection (read more here). This change doesn't break or change the existing API.

0.2.0

  • Change the api of Elixtagram.user_follows/1 & Elixtagram.user_follows/2 (now respectively Elixtagram.user_follows/2 & Elixtagram.user_follows/3) to accept a count argument.

Articles
to learn more about the elixir concepts.

Resources
which are currently available to browse on.

mail [email protected] to add your project or resources here 🔥.

FAQ's
to know more about the topic.

mail [email protected] to add your project or resources here 🔥.

Queries
or most google FAQ's about Elixir.

mail [email protected] to add more queries here 🔍.

More Sites
to check out once you're finished browsing here.

0x3d
https://www.0x3d.site/
0x3d is designed for aggregating information.
NodeJS
https://nodejs.0x3d.site/
NodeJS Online Directory
Cross Platform
https://cross-platform.0x3d.site/
Cross Platform Online Directory
Open Source
https://open-source.0x3d.site/
Open Source Online Directory
Analytics
https://analytics.0x3d.site/
Analytics Online Directory
JavaScript
https://javascript.0x3d.site/
JavaScript Online Directory
GoLang
https://golang.0x3d.site/
GoLang Online Directory
Python
https://python.0x3d.site/
Python Online Directory
Swift
https://swift.0x3d.site/
Swift Online Directory
Rust
https://rust.0x3d.site/
Rust Online Directory
Scala
https://scala.0x3d.site/
Scala Online Directory
Ruby
https://ruby.0x3d.site/
Ruby Online Directory
Clojure
https://clojure.0x3d.site/
Clojure Online Directory
Elixir
https://elixir.0x3d.site/
Elixir Online Directory
Elm
https://elm.0x3d.site/
Elm Online Directory
Lua
https://lua.0x3d.site/
Lua Online Directory
C Programming
https://c-programming.0x3d.site/
C Programming Online Directory
C++ Programming
https://cpp-programming.0x3d.site/
C++ Programming Online Directory
R Programming
https://r-programming.0x3d.site/
R Programming Online Directory
Perl
https://perl.0x3d.site/
Perl Online Directory
Java
https://java.0x3d.site/
Java Online Directory
Kotlin
https://kotlin.0x3d.site/
Kotlin Online Directory
PHP
https://php.0x3d.site/
PHP Online Directory
React JS
https://react.0x3d.site/
React JS Online Directory
Angular
https://angular.0x3d.site/
Angular JS Online Directory