Coder Social home page Coder Social logo

grackle's Introduction

grackle

by Hayes Davis

DESCRIPTION

Grackle is a lightweight Ruby wrapper around the Twitter REST and Search APIs. It’s based on my experience using the Twitter API to build cheaptweet.com. The main goal of Grackle is to never require a release when the Twitter API changes (which it often does) or in the face of a particular Twitter API bug. As such it’s somewhat different from other Twitter API libraries. It doesn’t try to hide the Twitter “methods” under an access layer nor does it introduce concrete classes for the various objects returned by Twitter. Instead, calls to the Grackle client map directly to Twitter API URLs. The objects returned by API calls are generated as OpenStructs on the fly and make no assumptions about the presence or absence of any particular attributes. Taking this approach means that changes to URLs used by Twitter, parameters required by those URLs or return values will not require a new release. It will potentially require, however, some modifications to your code that uses Grackle.

Grackle supports both OAuth and HTTP basic authentication.

USING GRACKLE

Before you do anything else, you’ll need to

require 'grackle'

Creating a Grackle::Client

Using Basic Auth

client = Grackle::Client.new(:auth=>{:type=:basic,:username=>'your_user',:password=>'yourpass'})

Using OAuth

client = Grackle::Client.new(:auth=>{
  :type=>:oauth,
  :consumer_key=>'SOMECONSUMERKEYFROMTWITTER', :consumer_token=>'SOMECONSUMERTOKENFROMTWITTER',
  :token=>'ACCESSTOKENACQUIREDONUSERSBEHALF', :token_secret=>'SUPERSECRETACCESSTOKENSECRET'
})

Using No Auth

client = Grackle::Client.new

See Grackle::Client for more information about valid arguments to the constructor. It’s quite configurable. Among other things, you can turn on ssl and specify custom headers. The calls below are pretty much as simple as it gets.

Grackle Method Syntax

Grackle uses a method syntax that corresponds to the Twitter API URLs with a few twists. Where you would have a slash in a Twitter URL, that becomes a “.” in a chained set of Grackle method calls. Each call in the method chain is used to build Twitter URL path until a particular call is encountered which causes the request to be sent. Methods which will cause a request to be execute include:

  • A method call ending in “?” will cause an HTTP GET to be executed

  • A method call ending in “!” will cause an HTTP POST to be executed

  • If a valid format such as .json, .xml, .rss or .atom is encounted, a get will be executed with that format

  • A format method can also include a ? or ! to determine GET or POST in that format respectively

GETting Data

Invoking the API method “/users/show” in XML format for the Twitter user “some_user” looks like

client.users.show.xml :id=>'some_user' #http://twitter.com/users/show.xml?id=some_user

Or using the JSON format:

client.users.show.json :id=>'some_user' #http://twitter.com/users/show.json?id=some_user

Or, since Twitter also allows certain ids to be part of their URLs, this works:

client.users.show.some_user.json #http://twitter.com/users/show/some_user.json

The client has a default format of :json so if you want to use the above call with the default format you can do:

client.users.show.some_user? #http://twitter.com/users/show/some_user.json

If you include a “?” at the end of any method name, that signals to the Grackle client that you want to execute an HTTP GET request.

POSTing data

To use Twitter API methods that require an HTTP POST, you need to end your method chain with a bang (!)

For example, to update the authenticated user’s status using the XML format:

client.statuses.update.xml! :status=>'this status is from grackle' #POST to http://twitter.com/statuses/update.xml

Or, with JSON

client.statuses.update.json! :status=>'this status is from grackle' #POST to http://twitter.com/statuses/update.json

Or, using the default format

client.statuses.update! :status=>'this status is from grackle' #POST to http://twitter.com/statuses/update.json

Toggling APIs

By default, the Grackle::Client sends all requests to the Twitter REST API. If you want to send requests to the Twitter Search API, just set Grackle::Client.api to :search. To toggle back, set it to be :rest. All requests made after setting this attribute will go to that API.

If you want to make a specific request to one API and not change the Client’s overall api setting beyond that request, you can use the bracket syntax like so:

client[:search].trends.daily? :exclude=>'hashtags'
client[:rest].users.show? :id=>'hayesdavis'

Search and REST requests are all built using the same method chaining and termination conventions.

Parameter handling

  • All parameters are URL encoded as necessary.

  • If you use a File object as a parameter it will be POSTed to Twitter in a multipart request.

  • If you use a Time object as a parameter, .httpdate will be called on it and that value will be used

Return Values

Regardless of the format used, Grackle returns an OpenStruct (actually a Grackle::TwitterStruct) of data. The attributes available on these structs correspond to the data returned by Twitter.

Dealing with Errors

If the request to Twitter does not return a status code of 200, then a TwitterError is thrown. This contains the HTTP method used, the full request URI, the response status, the response body in text and a response object build by parsing the formatted error returned by Twitter. It’s a good idea to wrap your API calls with rescue clauses for Grackle::TwitterError.

If there is an unexpected connection error or Twitter returns data in the wrong format (which it can do), you’ll still get a TwitterError.

Formats

Twitter allows you to request data in particular formats. Grackle currently supports JSON and XML. The Grackle::Client has a default_format you can specify. By default, the default_format is :json. If you don’t include a named format in your method chain as described above, but use a “?” or “!” then the Grackle::Client.default_format is used.

REQUIREMENTS:

You’ll need the following gems to use all features of Grackle:

  • json

  • oauth

  • mime-types

INSTALL:

sudo gem sources -a http://gems.github.com
sudo gem install hayesdavis-grackle

LICENSE:

(The MIT License)

Copyright © 2009

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

grackle's People

Contributors

robrasmussen avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.