exstagram alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view exstagram alternatives based on common mentions on social networks and blogs.
-
gringotts
A complete payment library for Elixir and Phoenix Framework -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint. -
airbrake
An Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels.
Build time-series-based applications quickly and at scale.
Do you think we are missing an alternative of exstagram or a related project?
README
exstagram
Instagram v1 API wrapper written in Elixir.
Please note, this is very much a work in progress. Feel free to contribute using pull requests.
Example usage
I made this simple phoenix app to show how to use exstagram!
See it in action on Heroku: https://exstagram-example.herokuapp.com
Here is the code for the above Heroku app: https://github.com/arthurcolle/exstagram_example
To run it yourself, please run the following commands:
git clone https://github.com/arthurcolle/exstagram_example
cd exstagram_example
mix deps.get
npm install
(may not be needed, but if you see any node-esque "throw err;" messages, this is why)
Before you can run it yourself, you'll have to configure three environment variables:
They are INSTAGRAM_CLIENT_ID
, INSTAGRAM_CLIENT_SECRET
, and INSTAGRAM_CALLBACK_URL
(see exstagram/lib/instagram.ex
for usage)
Finally, run:
mix phoenix.server
Contributors
- Clone repo, i.e.
git clone https://github.com/arthurcolle/exstagram
- Run
mix deps.get
- To give it a try, run
iex -S mix
Put this in your mix.exs
deps section:
{:instagram, "0.0.4", [github: "arthurcolle/exstagram"]}
See other cool Elixir repos at awesome-elixir
Not on hex.pm yet, but coming soon!
<!-- url = "https://api.instagram.com/v1/users/self/media/recent?access_token=1531139.f18ce1e.1353009936304f85921167c58a591475" case HTTPoison.get(url) do {:ok, %HTTPoison.Response{status_code: 200, body: body}} -> json_body = Poison.decode! body json_body["data"] |> Enum.map fn(x) -> x end -->