We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be5f4f commit de643c6Copy full SHA for de643c6
README.markdown
@@ -5,7 +5,8 @@ Access the Twitter API from Clojure.
5
6
# Building #
7
8
-`ant -Dclojure.jar="..." -Dclojure.contrib.jar="..."`
+`lein deps
9
+ lein jar`
10
11
12
# Example #
@@ -16,9 +17,9 @@ Access the Twitter API from Clojure.
16
17
;; Make a OAuth consumer
18
(def oauth-consumer (oauth/make-consumer <key>
19
<secret>
- "http://twitter.com/oauth/request_token"
20
- "http://twitter.com/oauth/access_token"
21
- "http://twitter.com/oauth/authorize"
+ "https://api.twitter.com/oauth/request_token"
+ "https://api.twitter.com/oauth/access_token"
22
+ "https://api.twitter.com/oauth/authorize"
23
:hmac-sha1))
24
25
(def oauth-access-token
0 commit comments