From b65039360f5a367d31d592234b9790fa551d6e2f Mon Sep 17 00:00:00 2001 From: Joost Elfering Date: Tue, 27 Mar 2012 14:40:46 +0200 Subject: [PATCH] adding users/search.json api wrapper to the available methods. --- src/twitter.clj | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/twitter.clj b/src/twitter.clj index 2eefc41..ae615d9 100644 --- a/src/twitter.clj +++ b/src/twitter.clj @@ -571,6 +571,15 @@ take any required and optional arguments and call the associated Twitter method. [] (comp #(:content %) status-handler)) +(def-twitter-method users-search + :get + "api.twitter.com/1/users/search.json" + [:q] + [:page + :per_page + :include_entities] + (comp #(:content %) status-handler)) + (def-twitter-method search :get "search.twitter.com/search.json"