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.
-
ethereumex
Elixir JSON-RPC client for the Ethereum blockchain 0x063D3d782598744AF1252eBEaf3aA97D990Edf72 -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
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
InfluxDB - Purpose built for real-time analytics at any 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