CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 18 Aug 2025 05:28:27 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090928044027
location: https://web.archive.org/web/20090928044027/https://github.com/mattrepl/clojure-twitter
server-timing: captures_list;dur=1.376763, exclusion.robots;dur=0.031393, exclusion.robots.policy;dur=0.019630, esindex;dur=0.013167, cdx.remote;dur=20.570736, LoadShardBlock;dur=236.985210, PetaboxLoader3.datanode;dur=83.154460, PetaboxLoader3.resolve;dur=88.733450
x-app-server: wwwb-app28
x-ts: 302
x-tr: 321
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Mon, 18 Aug 2025 05:28:27 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 28 Sep 2009 04:40:27 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "a3ae71f4eae7faed7df504ec19aaf65a"
x-archive-orig-x-runtime: 88ms
x-archive-orig-content-length: 23911
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 28 Sep 2009 04:40:27 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 28 Sep 2009 04:40:27 GMT", ; rel="memento"; datetime="Mon, 28 Sep 2009 04:40:27 GMT", ; rel="next memento"; datetime="Thu, 29 Apr 2010 06:11:12 GMT", ; rel="last memento"; datetime="Fri, 18 Sep 2020 16:14:43 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_11_20090928012404_crawl100.gpg-c/51_11_20090928043853_crawl101.arc.gz
server-timing: captures_list;dur=0.870174, exclusion.robots;dur=0.042342, exclusion.robots.policy;dur=0.026893, esindex;dur=0.015831, cdx.remote;dur=40.997848, LoadShardBlock;dur=172.958333, PetaboxLoader3.datanode;dur=184.675485, PetaboxLoader3.resolve;dur=154.115150, load_resource;dur=200.048665
x-app-server: wwwb-app28
x-ts: 200
x-tr: 515
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
mattrepl's clojure-twitter at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Clojure client for Twitter API edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/mattrepl/clojure-twitter.git
Give this clone URL to anyone.
git clone git://github.com/mattrepl/clojure-twitter.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:mattrepl/clojure-twitter.git
|

Matt Revelle (author)
Sun Sep 06 22:21:33 -0700 2009
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun May 10 17:48:04 -0700 2009 | Initial functionality. [Matt Revelle] |
![]() |
LICENSE | Sat Jul 18 21:51:53 -0700 2009 | Added BSD license file. [Matt Revelle] |
![]() |
README.markdown | Sun Sep 06 22:21:23 -0700 2009 | fixed name [Matt Revelle] |
![]() |
build.xml | Sun Sep 06 22:11:17 -0700 2009 | run clean before running deploy task [Matt Revelle] |
![]() |
lib/ | Sun Sep 06 22:21:33 -0700 2009 | latest and greatest [Matt Revelle] |
![]() |
src/ | Sun Sep 06 22:12:12 -0700 2009 | URL encode parameters prior to assembling the b... [Matt Revelle] |
README.markdown
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>
"https://twitter.com/oauth/request_token"
"https://twitter.com/oauth/access_token"
"https://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 (https://github.com/mattrepl/clj-oauth) for an example.)
(def oauth-access-token-secret
;; The secret included with the access token)
;; Post to twitter
(twitter/with-oauth oauth-consumer
oauth-access-token
oauth-access-token-secret
(twitter/update-status "posting from #clojure with #oauth"))
;; Find out who follows dons
(twitter/followers-of-name "donsbot")
Authors
Development funded by LikeStream LLC (Don Jackson and Shirish Andhare), see https://www.likestream.org/opensource.
Designed and developed by Matt Revelle of Lightpost Software.
This feature is coming soon. Sit tight!