Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

twitterdispatch

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twitterdispatch

  • 0.0.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= TwitterDispatch

TwitterDispatch is an unassuming API wrapper for Twitter based on the dispatcher from TwitterAuth. Rather than create a complex object mapping system around the simple REST API Twitter provides, TwitterDispatch simply gives you the tools to make calls directly to the API URLs and parse the results (or not).

TwitterDispatch supports both OAuth and HTTP Basic authentication strategies.

== Usage

To use TwitterDispatch you will need different things depending on the strategy you are using:

  • OAuth - You will need to have already registered your application with Twitter (have a consumer key and secret) as well as performed the entire OAuth authentication process (have an access key and secret). If you don't know much about OAuth and are building a Rails application, I would suggest using TwitterAuth instead.
  • HTTP Basic - You will need to have the screen name and password for the authenticating user.

Usage of TwitterDispatch is straightforward. Here are some basic examples to get you going.

# OAuth Example
dispatcher = TwitterDispatch.new(:oauth, 'myconsumerkey', 'myconsumersecret', 'myaccesskey', 'myaccesssecret')
dispatcher.get('/account/verify_credentials') # => {'screen_name' => ...}
dispatcher.post('/statuses/update', :status => 'Update my status.') # => {'text' => 'Update my status.' ... }

# HTTP Basic Example
dispatcher = TwitterDispatch.new(:basic, 'screenname', 'password')
dispatcher.get('/statuses/friends_timeline') # => [{'text' => ...}]

# No Auth Example
dispatcher = TwitterDispatch.new
dispatcher.get('/statuses/public_timeline') # => [{'text' => ...}]

# Search Example
dispatcher = TwitterDispatch.new
dispatcher.search('query text') # => [{'text' => ...}]

TwitterDispatch is not meant to be complex or assuming, it literally just does the bare minimum to provide you with a simple and direct access to the Twitter API in Ruby.

== Copyright

Copyright (c) 2009 Michael Bleigh and Intridea, Inc. See LICENSE for details.

FAQs

Package last updated on 25 Jul 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc