diff --git a/History b/History index 910a84a12..f51821c5d 100644 --- a/History +++ b/History @@ -1,6 +1,7 @@ 0.8.4 - February 11, 2010 * Added membership query options // thanks ming yeow ng * Added support for a phrase search (instead of a group of words) from @zagari + * Added support for trends/available and trends/location 0.8.3 - January 29, 2010 * Added patch for unauthenticated list timelines from @spastorino 0.8.2 - January 21, 2010 diff --git a/lib/twitter.rb b/lib/twitter.rb index f5b47861e..edfe8aa93 100644 --- a/lib/twitter.rb +++ b/lib/twitter.rb @@ -65,6 +65,24 @@ def self.list_timeline(list_owner_username, slug, query = {}) end end +module Hashie + class Mash + + # Converts all of the keys to strings, optionally formatting key name + def rubyify_keys! + keys.each{|k| + v = delete(k) + new_key = k.to_s.underscore + self[new_key] = v + v.rubyify_keys! if v.is_a?(Hash) + v.each{|p| p.rubyify_keys! if p.is_a?(Hash)} if v.is_a?(Array) + } + self + end + + end +end + directory = File.expand_path(File.dirname(__FILE__)) require File.join(directory, 'twitter', 'oauth') diff --git a/lib/twitter/base.rb b/lib/twitter/base.rb index 8dee591b4..5cecee0ee 100644 --- a/lib/twitter/base.rb +++ b/lib/twitter/base.rb @@ -284,7 +284,8 @@ def blocked_ids def blocking(options={}) perform_get("/blocks/blocking.json", options) end - + + protected def self.mime_type(file) case diff --git a/lib/twitter/trends.rb b/lib/twitter/trends.rb index b46a9e750..07c68eaa0 100644 --- a/lib/twitter/trends.rb +++ b/lib/twitter/trends.rb @@ -20,6 +20,14 @@ def self.daily(options={}) def self.weekly(options={}) mashup(get('/weekly.json', :query => options)) end + + def self.available(query={}) + locations = get('http://api.twitter.com/1/trends/available.json', :query => query).map{|location| Hashie::Mash.new(location)} + end + + def self.for_location(woeid) + get("http://api.twitter.com/1/trends/#{woeid}.json").map{|location| Hashie::Mash.new(location)} + end private def self.mashup(response) diff --git a/test/fixtures/trends_available.json b/test/fixtures/trends_available.json new file mode 100644 index 000000000..8736796df --- /dev/null +++ b/test/fixtures/trends_available.json @@ -0,0 +1,253 @@ +[{ + "url": "http://where.yahooapis.com/v1/place/23424803", + "placeType": { + "code": 12, + "name": "Country" + }, + "woeid": 23424803, + "countryCode": "IE", + "name": "Ireland", + "country": "Ireland" +}, +{ + "countryCode": "MX", + "country": "Mexico", + "url": "http://where.yahooapis.com/v1/place/23424900", + "name": "Mexico", + "placeType": { + "code": 12, + "name": "Country" + }, + "woeid": 23424900 +}, +{ + "url": "http://where.yahooapis.com/v1/place/23424975", + "woeid": 23424975, + "placeType": { + "code": 12, + "name": "Country" + }, + "countryCode": "GB", + "name": "United Kingdom", + "country": "United Kingdom" +}, +{ + "url": "http://where.yahooapis.com/v1/place/2358820", + "placeType": { + "code": 7, + "name": "Town" + }, + "countryCode": "US", + "woeid": 2358820, + "name": "Baltimore", + "country": "United States" +}, +{ + "countryCode": "US", + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2514815", + "name": "Washington", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2514815 +}, +{ + "url": "http://where.yahooapis.com/v1/place/2367105", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2367105, + "countryCode": "US", + "name": "Boston", + "country": "United States" +}, +{ + "country": "Brazil", + "url": "http://where.yahooapis.com/v1/place/455827", + "placeType": { + "code": 7, + "name": "Town" + }, + "countryCode": "BR", + "name": "Sao Paulo", + "woeid": 455827 +}, +{ + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2459115", + "placeType": { + "code": 7, + "name": "Town" + }, + "countryCode": "US", + "name": "New York", + "woeid": 2459115 +}, +{ + "url": "http://where.yahooapis.com/v1/place/2487796", + "countryCode": "US", + "woeid": 2487796, + "name": "San Antonio", + "country": "United States", + "placeType": { + "code": 7, + "name": "Town" + } +}, +{ + "url": "http://where.yahooapis.com/v1/place/23424977", + "woeid": 23424977, + "placeType": { + "code": 12, + "name": "Country" + }, + "countryCode": "US", + "name": "United States", + "country": "United States" +}, +{ + "url": "http://where.yahooapis.com/v1/place/23424768", + "woeid": 23424768, + "placeType": { + "code": 12, + "name": "Country" + }, + "countryCode": "BR", + "name": "Brazil", + "country": "Brazil" +}, +{ + "url": "http://where.yahooapis.com/v1/place/2379574", + "placeType": { + "code": 7, + "name": "Town" + }, + "countryCode": "US", + "woeid": 2379574, + "name": "Chicago", + "country": "United States" +}, +{ + "url": "http://where.yahooapis.com/v1/place/2471217", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2471217, + "countryCode": "US", + "name": "Philadelphia", + "country": "United States" +}, +{ + "countryCode": "US", + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2424766", + "name": "Houston", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2424766 +}, +{ + "countryCode": "US", + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2442047", + "name": "Los Angeles", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2442047 +}, +{ + "countryCode": "US", + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2487956", + "name": "San Francisco", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2487956 +}, +{ + "url": "http://where.yahooapis.com/v1/place/23424775", + "woeid": 23424775, + "placeType": { + "code": 12, + "name": "Country" + }, + "countryCode": "CA", + "name": "Canada", + "country": "Canada" +}, +{ + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2357024", + "placeType": { + "code": 7, + "name": "Town" + }, + "countryCode": "US", + "name": "Atlanta", + "woeid": 2357024 +}, +{ + "url": "http://where.yahooapis.com/v1/place/2406080", + "countryCode": "US", + "woeid": 2406080, + "name": "Fort Worth", + "country": "United States", + "placeType": { + "code": 7, + "name": "Town" + } +}, +{ + "url": "http://where.yahooapis.com/v1/place/2388929", + "countryCode": "US", + "woeid": 2388929, + "name": "Dallas", + "country": "United States", + "placeType": { + "code": 7, + "name": "Town" + } +}, +{ + "countryCode": "US", + "country": "United States", + "url": "http://where.yahooapis.com/v1/place/2490383", + "name": "Seattle", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 2490383 +}, +{ + "countryCode": "GB", + "country": "United Kingdom", + "url": "http://where.yahooapis.com/v1/place/44418", + "name": "London", + "placeType": { + "code": 7, + "name": "Town" + }, + "woeid": 44418 +}, +{ + "url": "http://where.yahooapis.com/v1/place/1", + "placeType": { + "code": 19, + "name": "Supername" + }, + "countryCode": null, + "woeid": 1, + "name": "Earth", + "country": "" +}] \ No newline at end of file diff --git a/test/fixtures/trends_daily.json b/test/fixtures/trends_daily.json index 8e9b8cfb4..46343e6db 100644 --- a/test/fixtures/trends_daily.json +++ b/test/fixtures/trends_daily.json @@ -1 +1,1925 @@ -{"as_of":1242680645,"trends":{"2009-05-17 05:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"SNL OR #SNL","name":"SNL"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Will Ferrell\"","name":"Will Ferrell"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"\"Celebrity Jeopardy\" OR Jeopardy","name":"Celebrity Jeopardy"},{"query":"Kobe","name":"Kobe"},{"query":"\"Tom Hanks\"","name":"Tom Hanks"},{"query":"\"Harry Potter\"","name":"Harry Potter"},{"query":"\"Tony Stewart\"","name":"Tony Stewart"},{"query":"Goodnight","name":"Goodnight"},{"query":"Preakness","name":"Preakness"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Lmfao","name":"Lmfao"},{"query":"Eurovision","name":"Eurovision"},{"query":"All-Star","name":"All-Star"},{"query":"Wolverine","name":"Wolverine"},{"query":"\"Dane Cook\"","name":"Dane Cook"}],"2009-05-17 02:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"Kobe","name":"Kobe"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Preakness","name":"Preakness"},{"query":"#wearelasers","name":"#wearelasers"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Nascar OR #Nascar","name":"Nascar"},{"query":"\"Spike Lee\"","name":"Spike Lee"},{"query":"Jonas","name":"Jonas"},{"query":"ESPN","name":"ESPN"},{"query":"#scadfashion","name":"#scadfashion"},{"query":"Norway","name":"Norway"},{"query":"\"Harry Potter\"","name":"Harry Potter"},{"query":"Fml","name":"Fml"},{"query":"Castle","name":"Castle"},{"query":"\"TO END HUNGER\"","name":"TO END HUNGER"},{"query":"All-Star","name":"All-Star"}],"2009-05-17 12:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"#shortstack","name":"#shortstack"},{"query":"#wossybookclub","name":"#wossybookclub"},{"query":"Norway","name":"Norway"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Rove OR #rove","name":"Rove"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Alexander Rybak\"","name":"Alexander Rybak"},{"query":"\"Lady Gaga\" OR Gaga","name":"Lady Gaga"},{"query":"Germany","name":"Germany"},{"query":"Paris","name":"Paris"},{"query":"#wolframalpha","name":"#wolframalpha"},{"query":"Iceland","name":"Iceland"},{"query":"GDI","name":"GDI"},{"query":"Lord","name":"Lord"},{"query":"H1N1","name":"H1N1"},{"query":"Moldova","name":"Moldova"}],"2009-05-17 14:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"#shortstack","name":"#shortstack"},{"query":"Norway","name":"Norway"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"#wossybookclub","name":"#wossybookclub"},{"query":"Paris","name":"Paris"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"},{"query":"Lord","name":"Lord"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Liverpool","name":"Liverpool"},{"query":"Church","name":"Church"},{"query":"\"West Brom\"","name":"West Brom"},{"query":"Jesus","name":"Jesus"},{"query":"#Japantechtalk","name":"#Japantechtalk"},{"query":"\"Lady Gaga\"","name":"Lady Gaga"}],"2009-05-17 11:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Norway","name":"Norway"},{"query":"#wossybookclub","name":"#wossybookclub"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Alexander Rybak\"","name":"Alexander Rybak"},{"query":"#ShortStack","name":"#ShortStack"},{"query":"GDI","name":"GDI"},{"query":"#stemcellresearch","name":"#stemcellresearch"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"GoodNight","name":"GoodNight"},{"query":"#MasterChef","name":"#MasterChef"},{"query":"Manchester","name":"Manchester"},{"query":"\"New York\"","name":"New York"},{"query":"Barometer","name":"Barometer"},{"query":"MPs","name":"MPs"},{"query":"SBS","name":"SBS"},{"query":"Rove","name":"Rove"}],"2009-05-17 21:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Houston","name":"Houston"},{"query":"KOBE","name":"KOBE"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"\"Go Lakers\" OR #Lakers","name":"Go Lakers"},{"query":"\"Top 10 Wolfram Alpha\"","name":"Top 10 Wolfram Alpha"},{"query":"#redwings","name":"#redwings"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"Rockets OR #Rockets","name":"Rockets"},{"query":"NBA OR #NBA","name":"NBA"},{"query":"#simpleplan","name":"#simpleplan"},{"query":"Blackhawks OR #blackhawks","name":"Blackhawks"},{"query":"Eurovision","name":"Eurovision"},{"query":"\"Red Wings\" OR Wings","name":"Red Wings"},{"query":"\"Go Rockets\" OR Rockets","name":"Go Rockets"}],"2009-05-17 10:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"Norway","name":"Norway"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"#stemcellresearch","name":"#stemcellresearch"},{"query":"\"Alexander Rybak\"","name":"Alexander Rybak"},{"query":"Goodnight","name":"Goodnight"},{"query":"SNL","name":"SNL"},{"query":"GDI","name":"GDI"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"Cannes","name":"Cannes"},{"query":"Manchester","name":"Manchester"},{"query":"Barometer","name":"Barometer"},{"query":"Germany","name":"Germany"},{"query":"Sydney","name":"Sydney"},{"query":"iPod","name":"iPod"},{"query":"FML","name":"FML"}],"2009-05-17 09:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#stemcellresearch","name":"#stemcellresearch"},{"query":"Norway","name":"Norway"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"SNL","name":"SNL"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Goodnight","name":"Goodnight"},{"query":"#delongeday","name":"#delongeday"},{"query":"Kobe","name":"Kobe"},{"query":"GDI","name":"GDI"},{"query":"FML","name":"FML"},{"query":"iPod","name":"iPod"},{"query":"Cannes","name":"Cannes"},{"query":"Lakers","name":"Lakers"},{"query":"Barometer","name":"Barometer"},{"query":"\"It's 4\"","name":"It's 4"},{"query":"LMFAO","name":"LMFAO"}],"2009-05-17 20:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"#3HotWords","name":"#3HotWords"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"#simpleplan","name":"#simpleplan"},{"query":"Kobe","name":"Kobe"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"Houston","name":"Houston"},{"query":"Eurovision","name":"Eurovision"},{"query":"Blackhawks","name":"Blackhawks"},{"query":"#redwings","name":"#redwings"},{"query":"\"Go Lakers\" OR #lakers","name":"Go Lakers"},{"query":"\"Go Rockets\" OR #Rockets","name":"Go Rockets"},{"query":"NBA","name":"NBA"},{"query":"\"President Obama\" OR Obama","name":"President Obama"},{"query":"Hawks","name":"Hawks"},{"query":"\"Red Wings\" OR \"Go Wings\"","name":"Red Wings"}],"2009-05-17 13:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"#shortstack","name":"#shortstack"},{"query":"Norway","name":"Norway"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Lady Gaga\"","name":"Lady Gaga"},{"query":"#wossybookclub","name":"#wossybookclub"},{"query":"Rove","name":"Rove"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Paris","name":"Paris"},{"query":"Lord","name":"Lord"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"},{"query":"GDi","name":"GDi"},{"query":"Jesus","name":"Jesus"},{"query":"Germany","name":"Germany"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Liverpool","name":"Liverpool"},{"query":"#Japantechtalk","name":"#Japantechtalk"}],"2009-05-17 08:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"SNL OR #snl","name":"SNL"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#stemcellresearch","name":"#stemcellresearch"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Goodnight","name":"Goodnight"},{"query":"KOBE","name":"KOBE"},{"query":"Norway","name":"Norway"},{"query":"\"Al Green\"","name":"Al Green"},{"query":"\"Will Ferrell\"","name":"Will Ferrell"},{"query":"\"Celebrity Jeopardy\"","name":"Celebrity Jeopardy"},{"query":"Lmfao","name":"Lmfao"},{"query":"FML","name":"FML"},{"query":"Lakers","name":"Lakers"},{"query":"iPod","name":"iPod"},{"query":"\"Meet The Spy\" OR Spy","name":"Meet The Spy"}],"2009-05-17 23:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Rockets OR #Rockets","name":"Rockets"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Kobe","name":"Kobe"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"Denver","name":"Denver"},{"query":"Houston","name":"Houston"},{"query":"#redwings","name":"#redwings"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Nuggets","name":"Nuggets"},{"query":"Celtics","name":"Celtics"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"\"Red Wings\" OR Wings","name":"Red Wings"},{"query":"\"Go Lakers\" OR Lakers","name":"Go Lakers"},{"query":"NBA","name":"NBA"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"Paris","name":"Paris"},{"query":"\"World Record Attempt\"","name":"World Record Attempt"}],"2009-05-17 18:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Angels & Demons\"","name":"Angels & Demons"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Eurovision","name":"Eurovision"},{"query":"Lakers","name":"Lakers"},{"query":"Rockets","name":"Rockets"},{"query":"Bay","name":"Bay"},{"query":"Mcfly OR #mcfly","name":"Mcfly"},{"query":"#simpleplan","name":"#simpleplan"},{"query":"Paris","name":"Paris"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"Lord","name":"Lord"},{"query":"Jesus","name":"Jesus"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Kobe","name":"Kobe"}],"2009-05-17 07:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"SNL","name":"SNL"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"#Delongeday","name":"#Delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Eurovision OR #Eurovision","name":"Eurovision"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Goodnight","name":"Goodnight"},{"query":"\"Al Green\"","name":"Al Green"},{"query":"Kobe","name":"Kobe"},{"query":"Lmfao","name":"Lmfao"},{"query":"Lakers","name":"Lakers"},{"query":"\"Will Ferrell\"","name":"Will Ferrell"},{"query":"FML","name":"FML"},{"query":"\"Meet The Spy\" OR Spy","name":"Meet The Spy"},{"query":"Norway","name":"Norway"},{"query":"iPod","name":"iPod"},{"query":"Wolverine","name":"Wolverine"},{"query":"Vegas","name":"Vegas"}],"2009-05-17 01:00":[{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Kobe","name":"Kobe"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"Preakness","name":"Preakness"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Jonas","name":"Jonas"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Norway","name":"Norway"},{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"ESPN","name":"ESPN"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Nascar OR #nascar","name":"Nascar"},{"query":"\"Alexander Rybak\"","name":"Alexander Rybak"},{"query":"\"Mine That Bird\"","name":"Mine That Bird"},{"query":"#wearelasers","name":"#wearelasers"},{"query":"Texas","name":"Texas"},{"query":"IMAX","name":"IMAX"},{"query":"\"TO END HUNGER\"","name":"TO END HUNGER"},{"query":"#wolframalpha","name":"#wolframalpha"},{"query":"\"New York\"","name":"New York"}],"2009-05-17 00:00":[{"query":"Eurovision OR #Eurovision","name":"Eurovision"},{"query":"Preakness OR #preakness","name":"Preakness"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Norway","name":"Norway"},{"query":"#twumpet","name":"#twumpet"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Alexander Rybak\"","name":"Alexander Rybak"},{"query":"\"Mine That Bird\"","name":"Mine That Bird"},{"query":"\"Graham Norton\"","name":"Graham Norton"},{"query":"Jade","name":"Jade"},{"query":"NASCAR OR #nascar","name":"NASCAR"},{"query":"\"Calvin Borel\"","name":"Calvin Borel"},{"query":"Iceland","name":"Iceland"},{"query":"Jonas","name":"Jonas"},{"query":"Greece","name":"Greece"},{"query":"Germany","name":"Germany"},{"query":"\"TO END HUNGER\"","name":"TO END HUNGER"},{"query":"\"EACH FOLLOWER IN THE\"","name":"EACH FOLLOWER IN THE"},{"query":"Norwegian","name":"Norwegian"}],"2009-05-17 22:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Rockets","name":"Rockets"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Kobe","name":"Kobe"},{"query":"Houston","name":"Houston"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"#RedWings","name":"#RedWings"},{"query":"NBA","name":"NBA"},{"query":"\"Go Lakers\" OR #Lakers","name":"Go Lakers"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"\"Red Wings\" OR \"Go Wings\"","name":"Red Wings"},{"query":"Paris","name":"Paris"},{"query":"\"Top 10 Wolfram Alpha\"","name":"Top 10 Wolfram Alpha"},{"query":"Denver","name":"Denver"},{"query":"Bynum","name":"Bynum"},{"query":"Eurovision","name":"Eurovision"}],"2009-05-17 17:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"#delongeday","name":"#delongeday"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Eurovision OR #eurovision","name":"Eurovision"},{"query":"Lakers","name":"Lakers"},{"query":"Bay","name":"Bay"},{"query":"McFly OR #mcfly","name":"McFly"},{"query":"Nadal","name":"Nadal"},{"query":"Rockets","name":"Rockets"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Federer","name":"Federer"},{"query":"Lord","name":"Lord"},{"query":"Jesus","name":"Jesus"},{"query":"Tom","name":"Tom"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"Rafa","name":"Rafa"}],"2009-05-17 16:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"Eurovision OR #Eurovision","name":"Eurovision"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Lakers","name":"Lakers"},{"query":"#delongeday","name":"#delongeday"},{"query":"Bay","name":"Bay"},{"query":"Hubble","name":"Hubble"},{"query":"McFly OR #mcfly","name":"McFly"},{"query":"Jesus","name":"Jesus"},{"query":"Rockets","name":"Rockets"},{"query":"Lord","name":"Lord"},{"query":"\"Jump Into The Stream\"","name":"Jump Into The Stream"},{"query":"Church","name":"Church"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Wimbledon","name":"Wimbledon"},{"query":"Miami","name":"Miami"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"}],"2009-05-17 14:15":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Eurovision OR #Eurovision","name":"Eurovision"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"Norway","name":"Norway"},{"query":"#shortstack","name":"#shortstack"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"#wossybookclub","name":"#wossybookclub"},{"query":"Paris","name":"Paris"},{"query":"\"World Record Attempt\" OR \"Record Attempt\"","name":"World Record Attempt"},{"query":"Lord","name":"Lord"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"Church","name":"Church"},{"query":"Liverpool","name":"Liverpool"},{"query":"\"West Brom\"","name":"West Brom"},{"query":"Jesus","name":"Jesus"},{"query":"GDI","name":"GDI"},{"query":"#continuitysummit","name":"#continuitysummit"}],"2009-05-17 19:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3HotWords","name":"#3HotWords"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Notre Dame\"","name":"Notre Dame"},{"query":"\"Angels & Demons\"","name":"Angels & Demons"},{"query":"#gonzpiration","name":"#gonzpiration"},{"query":"#SimplePlan","name":"#SimplePlan"},{"query":"Eurovision","name":"Eurovision"},{"query":"KOBE","name":"KOBE"},{"query":"\"Game 7\"","name":"Game 7"},{"query":"Paris","name":"Paris"},{"query":"Houston","name":"Houston"},{"query":"\"World Record Attempt\"","name":"World Record Attempt"},{"query":"Rockets","name":"Rockets"},{"query":"Bay","name":"Bay"},{"query":"McFly","name":"McFly"},{"query":"Jesus","name":"Jesus"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Lord","name":"Lord"}],"2009-05-17 04:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"SNL OR #SNL","name":"SNL"},{"query":"Kobe","name":"Kobe"},{"query":"#delongeday","name":"#delongeday"},{"query":"Preakness","name":"Preakness"},{"query":"\"Tony Stewart\" OR Stewart","name":"Tony Stewart"},{"query":"\"Harry Potter\"","name":"Harry Potter"},{"query":"\"Will Ferrell\"","name":"Will Ferrell"},{"query":"Eurovision","name":"Eurovision"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Nascar OR #nascar","name":"Nascar"},{"query":"All-Star","name":"All-Star"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"\"Dane Cook\"","name":"Dane Cook"},{"query":"Wolverine","name":"Wolverine"},{"query":"IMAX","name":"IMAX"},{"query":"Jesus","name":"Jesus"},{"query":"Goodnight","name":"Goodnight"}],"2009-05-17 03:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"Kobe","name":"Kobe"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"Preakness","name":"Preakness"},{"query":"Eurovision","name":"Eurovision"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Nascar OR #nascar","name":"Nascar"},{"query":"SNL","name":"SNL"},{"query":"\"Harry Potter\"","name":"Harry Potter"},{"query":"\"Spike Lee\"","name":"Spike Lee"},{"query":"#wearelasers","name":"#wearelasers"},{"query":"Wolverine","name":"Wolverine"},{"query":"FML","name":"FML"},{"query":"IMAX","name":"IMAX"},{"query":"Vegas","name":"Vegas"},{"query":"Jesus","name":"Jesus"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"Lmfao","name":"Lmfao"}],"2009-05-17 06:00":[{"query":"#3turnoffwords","name":"#3turnoffwords"},{"query":"#3hotwords","name":"#3hotwords"},{"query":"SNL OR #SNL","name":"SNL"},{"query":"#delongeday","name":"#delongeday"},{"query":"\"Green Day\"","name":"Green Day"},{"query":"\"Angels & Demons\" OR Demons","name":"Angels & Demons"},{"query":"\"Will Ferrell\"","name":"Will Ferrell"},{"query":"Kobe","name":"Kobe"},{"query":"Goodnight","name":"Goodnight"},{"query":"\"Celebrity Jeopardy\"","name":"Celebrity Jeopardy"},{"query":"\"Star Trek\"","name":"Star Trek"},{"query":"\"Tom Hanks\"","name":"Tom Hanks"},{"query":"Eurovision","name":"Eurovision"},{"query":"Alienz","name":"Alienz"},{"query":"Lmfao","name":"Lmfao"},{"query":"\"Harry Potter\"","name":"Harry Potter"},{"query":"FML","name":"FML"},{"query":"Wolverine","name":"Wolverine"},{"query":"\"Rachel Alexandra\"","name":"Rachel Alexandra"},{"query":"Vegas","name":"Vegas"}]}} \ No newline at end of file +{ + "as_of": 1242680645, + "trends": { + "2009-05-17 05:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "SNL OR #SNL", + "name": "SNL" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Will Ferrell\"", + "name": "Will Ferrell" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "\"Celebrity Jeopardy\" OR Jeopardy", + "name": "Celebrity Jeopardy" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "\"Tom Hanks\"", + "name": "Tom Hanks" + }, + { + "query": "\"Harry Potter\"", + "name": "Harry Potter" + }, + { + "query": "\"Tony Stewart\"", + "name": "Tony Stewart" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "Preakness", + "name": "Preakness" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Lmfao", + "name": "Lmfao" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "All-Star", + "name": "All-Star" + }, + { + "query": "Wolverine", + "name": "Wolverine" + }, + { + "query": "\"Dane Cook\"", + "name": "Dane Cook" + }], + "2009-05-17 02:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Preakness", + "name": "Preakness" + }, + { + "query": "#wearelasers", + "name": "#wearelasers" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Nascar OR #Nascar", + "name": "Nascar" + }, + { + "query": "\"Spike Lee\"", + "name": "Spike Lee" + }, + { + "query": "Jonas", + "name": "Jonas" + }, + { + "query": "ESPN", + "name": "ESPN" + }, + { + "query": "#scadfashion", + "name": "#scadfashion" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Harry Potter\"", + "name": "Harry Potter" + }, + { + "query": "Fml", + "name": "Fml" + }, + { + "query": "Castle", + "name": "Castle" + }, + { + "query": "\"TO END HUNGER\"", + "name": "TO END HUNGER" + }, + { + "query": "All-Star", + "name": "All-Star" + }], + "2009-05-17 12:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "#shortstack", + "name": "#shortstack" + }, + { + "query": "#wossybookclub", + "name": "#wossybookclub" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Rove OR #rove", + "name": "Rove" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Alexander Rybak\"", + "name": "Alexander Rybak" + }, + { + "query": "\"Lady Gaga\" OR Gaga", + "name": "Lady Gaga" + }, + { + "query": "Germany", + "name": "Germany" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "#wolframalpha", + "name": "#wolframalpha" + }, + { + "query": "Iceland", + "name": "Iceland" + }, + { + "query": "GDI", + "name": "GDI" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "H1N1", + "name": "H1N1" + }, + { + "query": "Moldova", + "name": "Moldova" + }], + "2009-05-17 14:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "#shortstack", + "name": "#shortstack" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "#wossybookclub", + "name": "#wossybookclub" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Liverpool", + "name": "Liverpool" + }, + { + "query": "Church", + "name": "Church" + }, + { + "query": "\"West Brom\"", + "name": "West Brom" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "#Japantechtalk", + "name": "#Japantechtalk" + }, + { + "query": "\"Lady Gaga\"", + "name": "Lady Gaga" + }], + "2009-05-17 11:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "#wossybookclub", + "name": "#wossybookclub" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Alexander Rybak\"", + "name": "Alexander Rybak" + }, + { + "query": "#ShortStack", + "name": "#ShortStack" + }, + { + "query": "GDI", + "name": "GDI" + }, + { + "query": "#stemcellresearch", + "name": "#stemcellresearch" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "GoodNight", + "name": "GoodNight" + }, + { + "query": "#MasterChef", + "name": "#MasterChef" + }, + { + "query": "Manchester", + "name": "Manchester" + }, + { + "query": "\"New York\"", + "name": "New York" + }, + { + "query": "Barometer", + "name": "Barometer" + }, + { + "query": "MPs", + "name": "MPs" + }, + { + "query": "SBS", + "name": "SBS" + }, + { + "query": "Rove", + "name": "Rove" + }], + "2009-05-17 21:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Houston", + "name": "Houston" + }, + { + "query": "KOBE", + "name": "KOBE" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "\"Go Lakers\" OR #Lakers", + "name": "Go Lakers" + }, + { + "query": "\"Top 10 Wolfram Alpha\"", + "name": "Top 10 Wolfram Alpha" + }, + { + "query": "#redwings", + "name": "#redwings" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "Rockets OR #Rockets", + "name": "Rockets" + }, + { + "query": "NBA OR #NBA", + "name": "NBA" + }, + { + "query": "#simpleplan", + "name": "#simpleplan" + }, + { + "query": "Blackhawks OR #blackhawks", + "name": "Blackhawks" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "\"Red Wings\" OR Wings", + "name": "Red Wings" + }, + { + "query": "\"Go Rockets\" OR Rockets", + "name": "Go Rockets" + }], + "2009-05-17 10:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "#stemcellresearch", + "name": "#stemcellresearch" + }, + { + "query": "\"Alexander Rybak\"", + "name": "Alexander Rybak" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "SNL", + "name": "SNL" + }, + { + "query": "GDI", + "name": "GDI" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "Cannes", + "name": "Cannes" + }, + { + "query": "Manchester", + "name": "Manchester" + }, + { + "query": "Barometer", + "name": "Barometer" + }, + { + "query": "Germany", + "name": "Germany" + }, + { + "query": "Sydney", + "name": "Sydney" + }, + { + "query": "iPod", + "name": "iPod" + }, + { + "query": "FML", + "name": "FML" + }], + "2009-05-17 09:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#stemcellresearch", + "name": "#stemcellresearch" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "SNL", + "name": "SNL" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "GDI", + "name": "GDI" + }, + { + "query": "FML", + "name": "FML" + }, + { + "query": "iPod", + "name": "iPod" + }, + { + "query": "Cannes", + "name": "Cannes" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "Barometer", + "name": "Barometer" + }, + { + "query": "\"It's 4\"", + "name": "It's 4" + }, + { + "query": "LMFAO", + "name": "LMFAO" + }], + "2009-05-17 20:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "#3HotWords", + "name": "#3HotWords" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "#simpleplan", + "name": "#simpleplan" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "Houston", + "name": "Houston" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "Blackhawks", + "name": "Blackhawks" + }, + { + "query": "#redwings", + "name": "#redwings" + }, + { + "query": "\"Go Lakers\" OR #lakers", + "name": "Go Lakers" + }, + { + "query": "\"Go Rockets\" OR #Rockets", + "name": "Go Rockets" + }, + { + "query": "NBA", + "name": "NBA" + }, + { + "query": "\"President Obama\" OR Obama", + "name": "President Obama" + }, + { + "query": "Hawks", + "name": "Hawks" + }, + { + "query": "\"Red Wings\" OR \"Go Wings\"", + "name": "Red Wings" + }], + "2009-05-17 13:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "#shortstack", + "name": "#shortstack" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Lady Gaga\"", + "name": "Lady Gaga" + }, + { + "query": "#wossybookclub", + "name": "#wossybookclub" + }, + { + "query": "Rove", + "name": "Rove" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "GDi", + "name": "GDi" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "Germany", + "name": "Germany" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Liverpool", + "name": "Liverpool" + }, + { + "query": "#Japantechtalk", + "name": "#Japantechtalk" + }], + "2009-05-17 08:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "SNL OR #snl", + "name": "SNL" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#stemcellresearch", + "name": "#stemcellresearch" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "KOBE", + "name": "KOBE" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "\"Al Green\"", + "name": "Al Green" + }, + { + "query": "\"Will Ferrell\"", + "name": "Will Ferrell" + }, + { + "query": "\"Celebrity Jeopardy\"", + "name": "Celebrity Jeopardy" + }, + { + "query": "Lmfao", + "name": "Lmfao" + }, + { + "query": "FML", + "name": "FML" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "iPod", + "name": "iPod" + }, + { + "query": "\"Meet The Spy\" OR Spy", + "name": "Meet The Spy" + }], + "2009-05-17 23:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Rockets OR #Rockets", + "name": "Rockets" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "Denver", + "name": "Denver" + }, + { + "query": "Houston", + "name": "Houston" + }, + { + "query": "#redwings", + "name": "#redwings" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Nuggets", + "name": "Nuggets" + }, + { + "query": "Celtics", + "name": "Celtics" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "\"Red Wings\" OR Wings", + "name": "Red Wings" + }, + { + "query": "\"Go Lakers\" OR Lakers", + "name": "Go Lakers" + }, + { + "query": "NBA", + "name": "NBA" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "\"World Record Attempt\"", + "name": "World Record Attempt" + }], + "2009-05-17 18:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Angels & Demons\"", + "name": "Angels & Demons" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "Rockets", + "name": "Rockets" + }, + { + "query": "Bay", + "name": "Bay" + }, + { + "query": "Mcfly OR #mcfly", + "name": "Mcfly" + }, + { + "query": "#simpleplan", + "name": "#simpleplan" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Kobe", + "name": "Kobe" + }], + "2009-05-17 07:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "SNL", + "name": "SNL" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "#Delongeday", + "name": "#Delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Eurovision OR #Eurovision", + "name": "Eurovision" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "\"Al Green\"", + "name": "Al Green" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "Lmfao", + "name": "Lmfao" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "\"Will Ferrell\"", + "name": "Will Ferrell" + }, + { + "query": "FML", + "name": "FML" + }, + { + "query": "\"Meet The Spy\" OR Spy", + "name": "Meet The Spy" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "iPod", + "name": "iPod" + }, + { + "query": "Wolverine", + "name": "Wolverine" + }, + { + "query": "Vegas", + "name": "Vegas" + }], + "2009-05-17 01:00": [{ + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "Preakness", + "name": "Preakness" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Jonas", + "name": "Jonas" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "ESPN", + "name": "ESPN" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Nascar OR #nascar", + "name": "Nascar" + }, + { + "query": "\"Alexander Rybak\"", + "name": "Alexander Rybak" + }, + { + "query": "\"Mine That Bird\"", + "name": "Mine That Bird" + }, + { + "query": "#wearelasers", + "name": "#wearelasers" + }, + { + "query": "Texas", + "name": "Texas" + }, + { + "query": "IMAX", + "name": "IMAX" + }, + { + "query": "\"TO END HUNGER\"", + "name": "TO END HUNGER" + }, + { + "query": "#wolframalpha", + "name": "#wolframalpha" + }, + { + "query": "\"New York\"", + "name": "New York" + }], + "2009-05-17 00:00": [{ + "query": "Eurovision OR #Eurovision", + "name": "Eurovision" + }, + { + "query": "Preakness OR #preakness", + "name": "Preakness" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "#twumpet", + "name": "#twumpet" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Alexander Rybak\"", + "name": "Alexander Rybak" + }, + { + "query": "\"Mine That Bird\"", + "name": "Mine That Bird" + }, + { + "query": "\"Graham Norton\"", + "name": "Graham Norton" + }, + { + "query": "Jade", + "name": "Jade" + }, + { + "query": "NASCAR OR #nascar", + "name": "NASCAR" + }, + { + "query": "\"Calvin Borel\"", + "name": "Calvin Borel" + }, + { + "query": "Iceland", + "name": "Iceland" + }, + { + "query": "Jonas", + "name": "Jonas" + }, + { + "query": "Greece", + "name": "Greece" + }, + { + "query": "Germany", + "name": "Germany" + }, + { + "query": "\"TO END HUNGER\"", + "name": "TO END HUNGER" + }, + { + "query": "\"EACH FOLLOWER IN THE\"", + "name": "EACH FOLLOWER IN THE" + }, + { + "query": "Norwegian", + "name": "Norwegian" + }], + "2009-05-17 22:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Rockets", + "name": "Rockets" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "Houston", + "name": "Houston" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "#RedWings", + "name": "#RedWings" + }, + { + "query": "NBA", + "name": "NBA" + }, + { + "query": "\"Go Lakers\" OR #Lakers", + "name": "Go Lakers" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "\"Red Wings\" OR \"Go Wings\"", + "name": "Red Wings" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "\"Top 10 Wolfram Alpha\"", + "name": "Top 10 Wolfram Alpha" + }, + { + "query": "Denver", + "name": "Denver" + }, + { + "query": "Bynum", + "name": "Bynum" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }], + "2009-05-17 17:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Eurovision OR #eurovision", + "name": "Eurovision" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "Bay", + "name": "Bay" + }, + { + "query": "McFly OR #mcfly", + "name": "McFly" + }, + { + "query": "Nadal", + "name": "Nadal" + }, + { + "query": "Rockets", + "name": "Rockets" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Federer", + "name": "Federer" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "Tom", + "name": "Tom" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "Rafa", + "name": "Rafa" + }], + "2009-05-17 16:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "Eurovision OR #Eurovision", + "name": "Eurovision" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Lakers", + "name": "Lakers" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "Bay", + "name": "Bay" + }, + { + "query": "Hubble", + "name": "Hubble" + }, + { + "query": "McFly OR #mcfly", + "name": "McFly" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "Rockets", + "name": "Rockets" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "\"Jump Into The Stream\"", + "name": "Jump Into The Stream" + }, + { + "query": "Church", + "name": "Church" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Wimbledon", + "name": "Wimbledon" + }, + { + "query": "Miami", + "name": "Miami" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }], + "2009-05-17 14:15": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Eurovision OR #Eurovision", + "name": "Eurovision" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "Norway", + "name": "Norway" + }, + { + "query": "#shortstack", + "name": "#shortstack" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "#wossybookclub", + "name": "#wossybookclub" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "\"World Record Attempt\" OR \"Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "Lord", + "name": "Lord" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "Church", + "name": "Church" + }, + { + "query": "Liverpool", + "name": "Liverpool" + }, + { + "query": "\"West Brom\"", + "name": "West Brom" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "GDI", + "name": "GDI" + }, + { + "query": "#continuitysummit", + "name": "#continuitysummit" + }], + "2009-05-17 19:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3HotWords", + "name": "#3HotWords" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Notre Dame\"", + "name": "Notre Dame" + }, + { + "query": "\"Angels & Demons\"", + "name": "Angels & Demons" + }, + { + "query": "#gonzpiration", + "name": "#gonzpiration" + }, + { + "query": "#SimplePlan", + "name": "#SimplePlan" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "KOBE", + "name": "KOBE" + }, + { + "query": "\"Game 7\"", + "name": "Game 7" + }, + { + "query": "Paris", + "name": "Paris" + }, + { + "query": "Houston", + "name": "Houston" + }, + { + "query": "\"World Record Attempt\"", + "name": "World Record Attempt" + }, + { + "query": "Rockets", + "name": "Rockets" + }, + { + "query": "Bay", + "name": "Bay" + }, + { + "query": "McFly", + "name": "McFly" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Lord", + "name": "Lord" + }], + "2009-05-17 04:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "SNL OR #SNL", + "name": "SNL" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "Preakness", + "name": "Preakness" + }, + { + "query": "\"Tony Stewart\" OR Stewart", + "name": "Tony Stewart" + }, + { + "query": "\"Harry Potter\"", + "name": "Harry Potter" + }, + { + "query": "\"Will Ferrell\"", + "name": "Will Ferrell" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Nascar OR #nascar", + "name": "Nascar" + }, + { + "query": "All-Star", + "name": "All-Star" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "\"Dane Cook\"", + "name": "Dane Cook" + }, + { + "query": "Wolverine", + "name": "Wolverine" + }, + { + "query": "IMAX", + "name": "IMAX" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }], + "2009-05-17 03:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "Preakness", + "name": "Preakness" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Nascar OR #nascar", + "name": "Nascar" + }, + { + "query": "SNL", + "name": "SNL" + }, + { + "query": "\"Harry Potter\"", + "name": "Harry Potter" + }, + { + "query": "\"Spike Lee\"", + "name": "Spike Lee" + }, + { + "query": "#wearelasers", + "name": "#wearelasers" + }, + { + "query": "Wolverine", + "name": "Wolverine" + }, + { + "query": "FML", + "name": "FML" + }, + { + "query": "IMAX", + "name": "IMAX" + }, + { + "query": "Vegas", + "name": "Vegas" + }, + { + "query": "Jesus", + "name": "Jesus" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "Lmfao", + "name": "Lmfao" + }], + "2009-05-17 06:00": [{ + "query": "#3turnoffwords", + "name": "#3turnoffwords" + }, + { + "query": "#3hotwords", + "name": "#3hotwords" + }, + { + "query": "SNL OR #SNL", + "name": "SNL" + }, + { + "query": "#delongeday", + "name": "#delongeday" + }, + { + "query": "\"Green Day\"", + "name": "Green Day" + }, + { + "query": "\"Angels & Demons\" OR Demons", + "name": "Angels & Demons" + }, + { + "query": "\"Will Ferrell\"", + "name": "Will Ferrell" + }, + { + "query": "Kobe", + "name": "Kobe" + }, + { + "query": "Goodnight", + "name": "Goodnight" + }, + { + "query": "\"Celebrity Jeopardy\"", + "name": "Celebrity Jeopardy" + }, + { + "query": "\"Star Trek\"", + "name": "Star Trek" + }, + { + "query": "\"Tom Hanks\"", + "name": "Tom Hanks" + }, + { + "query": "Eurovision", + "name": "Eurovision" + }, + { + "query": "Alienz", + "name": "Alienz" + }, + { + "query": "Lmfao", + "name": "Lmfao" + }, + { + "query": "\"Harry Potter\"", + "name": "Harry Potter" + }, + { + "query": "FML", + "name": "FML" + }, + { + "query": "Wolverine", + "name": "Wolverine" + }, + { + "query": "\"Rachel Alexandra\"", + "name": "Rachel Alexandra" + }, + { + "query": "Vegas", + "name": "Vegas" + }] + } +} \ No newline at end of file diff --git a/test/fixtures/trends_location.json b/test/fixtures/trends_location.json new file mode 100644 index 000000000..99f015bae --- /dev/null +++ b/test/fixtures/trends_location.json @@ -0,0 +1,57 @@ +[{ + "trends": [{ + "url": "http://search.twitter.com/search?q=%23%23cakkatvstreamers", + "name": "##cakkatvstreamers", + "query": "%23%23cakkatvstreamers" + }, + { + "url": "http://search.twitter.com/search?q=Google+Buzz", + "name": "Google Buzz", + "query": "Google+Buzz" + }, + { + "url": "http://search.twitter.com/search?q=iPad", + "name": "iPad", + "query": "iPad" + }, + { + "url": "http://search.twitter.com/search?q=Fashion+Week", + "name": "Fashion Week", + "query": "Fashion+Week" + }, + { + "url": "http://search.twitter.com/search?q=Trivium", + "name": "Trivium", + "query": "Trivium" + }, + { + "url": "http://search.twitter.com/search?q=Haiti", + "name": "Haiti", + "query": "Haiti" + }, + { + "url": "http://search.twitter.com/search?q=%23hbu", + "name": "#hbu", + "query": "%23hbu" + }, + { + "url": "http://search.twitter.com/search?q=Olympics", + "name": "Olympics", + "query": "Olympics" + }, + { + "url": "http://search.twitter.com/search?q=Event", + "name": "Event", + "query": "Event" + }, + { + "url": "http://search.twitter.com/search?q=Gmail", + "name": "Gmail", + "query": "Gmail" + }], + "locations": [{ + "woeid": 2487956, + "name": "San Francisco" + }], + "as_of": "2010-02-11T14:00:02Z" +}] \ No newline at end of file diff --git a/test/twitter/trends_test.rb b/test/twitter/trends_test.rb index 687cc7ac1..3fed3f55a 100644 --- a/test/twitter/trends_test.rb +++ b/test/twitter/trends_test.rb @@ -92,4 +92,21 @@ class TrendsTest < Test::Unit::TestCase trends[0].query.should == 'TGIF' end end + + context "Getting local trends" do + + should "return a list of available locations" do + stub_get 'http://api.twitter.com/1/trends/available.json?lat=33.237593417&lng=-96.960559033', 'trends_available.json' + locations = Trends.available(:lat => 33.237593417, :lng => -96.960559033) + locations.first.country.should == 'Ireland' + locations.first.placeType.code.should == 12 + end + + should "return a list of trends for a given location" do + stub_get 'http://api.twitter.com/1/trends/2487956.json', 'trends_location.json' + trends = Trends.for_location(2487956).first.trends + trends.last.name.should == 'Gmail' + end + end + end \ No newline at end of file