Skip to content

pycoder01/clojure-twitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter client API for Clojure

Access the Twitter API from Clojure.

Building

ant -Dclojure.jar="..." -Dclojure.contrib.jar="..."

Example

(require 'twitter
         ['oauth.client :as 'oauth])

;; Make a OAuth consumer
(def oauth-consumer (oauth/make-consumer <key>
                                         <secret>       
                                         "http://twitter.com/oauth/request_token"
                                         "http://twitter.com/oauth/access_token"
                                         "http://twitter.com/oauth/authorize"
                                         :hmac-sha1))

(def oauth-access-token 
     ;; Look up an access token you've stored away after the user
     ;; authorized a request token and you traded it in for an
     ;; access token.  See clj-oauth (http://github.com/mattrepl/clj-oauth) for an example.

;; Post to twitter
(twitter/with-oauth oauth-consumer oauth-access-token
                    (twitter/update-status "posting from #clojure with #oauth"))

;; Find out who follows dons
(twitter/followers-of-name "dons")

Authors

Development funded by LikeStream LLC (Don Jackson and Shirish Andhare), see http://www.likestream.org/opensource.

Designed and developed by Matt Revelle of Lightpost Software.

About

Clojure client for Twitter API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published