rs_twitter alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view rs_twitter 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. -
diplomat
Elixir library for interacting with Google's Cloud Datastore -
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 rs_twitter or a related project?
README
RsTwitter
Twitter Client for Elixir
This is low level twitter client. The idea behind this package is not to define special functions for each endpoint, but use generic request structure
%RsTwitter.Request{endpoint: "followers/ids", parameters: %{"user_id" => 123}, credentials: credentials}
Such request structure can do API request to any twitter API endpoint.
Just browse API Docs
and create appropriate %RsTwitter.Request{}
%RsTwitter.Request{endpoint: "followers/ids", parameters: %{"user_id" => 123}, credentials: credentials}
%RsTwitter.Request{endpoint: "users/lookup", parameters: %{"screen_name" => "radzserg"}, credentials: credentials}
%RsTwitter.Request{method: :post, endpoint: "friendships/create", parameters: %{"screen_name" => "radzserg"}, credentials: credentials}
# discover docs to build your request
You will get raw response object and it's your responsibility how to use it.
{:ok,
%RsTwitter.Response{
body: %{
"ids" => [1029248792367964162, 991927650775117824, 918173404812972032,
435437746, ...],
"next_cursor" => 1593371931590276485,
"next_cursor_str" => "1593371931590276485",
"previous_cursor" => 0,
"previous_cursor_str" => "0"
},
headers: [
{"x-rate-limit-limit", "15"},
...
],
status_code: 200
}}
Installation
Add rs_twitter
to your list of dependencies in mix.exs
:
def deps do
[
{:rs_twitter, "~> 0.1.0"}
]
end
Documentation