From 0e215a499db4d5afb0fa28b26ab17f0f751f753c Mon Sep 17 00:00:00 2001 From: Aaron Steele Date: Tue, 22 Jan 2013 08:57:28 -0800 Subject: [PATCH] Bump search API to v1.1 --- src/twitter/api/search.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/twitter/api/search.clj b/src/twitter/api/search.clj index dbaa061..240a016 100644 --- a/src/twitter/api/search.clj +++ b/src/twitter/api/search.clj @@ -6,7 +6,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(def ^:dynamic *search-api* (ApiContext. "http" "search.twitter.com" nil)) +(def ^:dynamic *search-api* (ApiContext. "https" "api.twitter.com" "1.1")) (defmacro def-twitter-search-method "defines a search method using the search api context and the synchronous comms" @@ -16,6 +16,6 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(def-twitter-search-method search :get "search.json") +(def-twitter-search-method search :get "search/tweets.json") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;