{"id":13509614,"url":"https://github.com/radzserg/rstwitter","last_synced_at":"2026-02-26T08:12:05.836Z","repository":{"id":57545067,"uuid":"144845152","full_name":"radzserg/rstwitter","owner":"radzserg","description":"Elixir Twitter Client","archived":false,"fork":false,"pushed_at":"2019-06-17T09:57:58.000Z","size":24,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-22T03:15:56.863Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hexdocs.pm/rs_twitter","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/radzserg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-15T11:33:47.000Z","updated_at":"2022-07-31T20:22:15.000Z","dependencies_parsed_at":"2022-08-27T04:22:29.933Z","dependency_job_id":null,"html_url":"https://github.com/radzserg/rstwitter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radzserg%2Frstwitter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radzserg%2Frstwitter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radzserg%2Frstwitter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radzserg%2Frstwitter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/radzserg","download_url":"https://codeload.github.com/radzserg/rstwitter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246324145,"owners_count":20759086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T02:01:10.370Z","updated_at":"2025-10-21T15:02:54.046Z","avatar_url":"https://github.com/radzserg.png","language":"Elixir","funding_links":[],"categories":["Third Party APIs"],"sub_categories":[],"readme":"# RsTwitter\n\n**Twitter Client for Elixir**\n\nThis is low level twitter client. The idea behind this package is not to define special functions for each endpoint,\nbut use generic request structure\n\n`%RsTwitter.Request{endpoint: \"followers/ids\", parameters: %{\"user_id\" =\u003e 123}, credentials: credentials}`\n\n\nSuch request structure can do API request to any twitter API endpoint.\nJust browse [API Docs](https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference)\nand create appropriate `%RsTwitter.Request{}`\n\n```elixir\n%RsTwitter.Request{endpoint: \"followers/ids\", parameters: %{\"user_id\" =\u003e 123}, credentials: credentials}\n%RsTwitter.Request{endpoint: \"users/lookup\", parameters: %{\"screen_name\" =\u003e \"radzserg\"}, credentials: credentials}\n%RsTwitter.Request{method: :post, endpoint: \"friendships/create\", parameters: %{\"screen_name\" =\u003e \"radzserg\"}, credentials: credentials}\n# discover docs to build your request\n```\n\nYou will get raw response object and it's your responsibility how to use it.\n\n```elixir\n\n{:ok,\n %RsTwitter.Response{\n   body: %{\n     \"ids\" =\u003e [1029248792367964162, 991927650775117824, 918173404812972032,\n      435437746, ...],\n     \"next_cursor\" =\u003e 1593371931590276485,\n     \"next_cursor_str\" =\u003e \"1593371931590276485\",\n     \"previous_cursor\" =\u003e 0,\n     \"previous_cursor_str\" =\u003e \"0\"\n   },\n   headers: [\n     {\"x-rate-limit-limit\", \"15\"},\n     ...\n   ],\n   status_code: 200\n }}\n\n\n```\n\n\n## Installation\n\nAdd `rs_twitter` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:rs_twitter, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\n**Documentation**\n\n[Browse documentation](https://hexdocs.pm/rs_twitter/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradzserg%2Frstwitter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fradzserg%2Frstwitter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradzserg%2Frstwitter/lists"}