some-apis

Created: 2008-12-19 20:05
Updated: 2016-05-08 19:59
License: mit

README.markdown

#Some APIs

This is a helper to get access to Some APIs that I've found around the Internet.

This is using Ruby on Rails.

##New York Times

To use it, you have to get an api-key in NYTimes website: http://developer.nytimes.com/apps/register

Get your API-Key and past it into .yml file for specific API that you have intention to use.

###Movie Review

require 'nytimes_api'
#.
mr = NYTimes::MovieReviews.new
content, header = mr.search({:query => "matrix"})

###Time Tags

require 'nytimes_api'
#.
tags = NYTimes::TimesTags.new
records, header = tags.suggest("Steve Jobs")

###Community

require 'nytimes_api'
#.
com = NYTimes::Community.new
records, header = com.recent

##Blip.fm

###User Profile

require 'blipfm_api'
#.
blip = Blipfm::UserProfile.new
records, header = blip.user_profile("marciogarcia")

##Yahoo!

###Boss

*Soon / Roadmap...

###FlickR

*Soon / Roadmap...

###Delicious

*Soon / Roadmap...

###Help

If you know more useful websites with API access and want to let this APIs easiest to integrate on RoR projects, join us! Make a fork and implement your!

Copyright (c) 2008 Marcio Garcia, released under the MIT license

Cookies help us deliver our services. By using our services, you agree to our use of cookies Learn more