qiita_ex alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view qiita_ex alternatives based on common mentions on social networks and blogs.
-
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.
Elixir and Phoenix Application Security Platform
Do you think we are missing an alternative of qiita_ex or a related project?
README
QiitaEx - Qiita API v2 Interface for Elixir
Installation
Add :qiita_ex
library to your project's dependencies in mix.exs
and also add in application
function:
def application do
[applications: [:logger, :qiita_ex]]
end
defp deps do
[
{:qiita_ex, "~> 0.0.1"}
]
end
And fetch:
$ mix deps.get
Usage
Go to https://qiita.com/settings/tokens/new and get your token.
iex -S mix
iex> response = QiitaEx.API.Users.get_user("<YOUR_ACCESS_TOKEN>", "ma2ge")
iex> response.status_code
iex> response.headers
iex> response.body
License
Copyright © 2014 Takayuki Matsubara, released under the MIT license.
*Note that all licence references and agreements mentioned in the qiita_ex README section above
are relevant to that project's source code only.