clojure-twitter
clojure-twitter copied to clipboard
Clojure client for Twitter API
It doesn't look like oauth is being included. ``` (ns hello.core) (defn -main [] (require 'twitter '[oauth.client :as oauth]) ;; Make a OAuth consumer (def oauth-consumer (oauth/make-consumer "https://api.twitter.com/oauth/request_token" "https://api.twitter.com/oauth/access_token" "https://api.twitter.com/oauth/authorize"...
I'm getting 410 responses because the library is making requests to this end point: ``` api.twitter.com/1/statuses/home_timeline.json ``` when it needs to be ``` api.twitter.com/1.1/statuses/home_timeline.json ``` now. I'm not sure if...
I ran this code in a SLIME REPL: ``` (require 'twitter) (twitter/show-user-by-name "ieure") ``` This printed the warning: ``` Aug 13, 2011 2:08:26 PM org.apache.http.client.protocol.ResponseProcessCookies processCookies WARNING: Invalid cookie header:...
Is it possible to make multiple requests to the Twitter APIs using a single OAuth token? Something along the lines of (defn make-friends [ids] :description "ids is a list of...
A function that takes a URL path and arguments and makes a HTTP request to the Twitter API should be used to permit the user to select the HTTP lib...
Trying to update your status with stuff like this: ⟹ results in stuff like this: ``` twitter.proxy$java.lang.Exception$0: [401] Incorrect signature. [/1/statuses/upd ate.json] at twitter.proxy$java.lang.Exception$0.fillInStackTrace (:-1) java.lang.Throwable. (Throwable.java:213) java.lang.Exception. (Exception.java:58) twitter.proxy$java.lang.Exception$0....