drone29a / clj-oauth

OAuth Consumer support for Clojure
BSD 2-Clause "Simplified" License
273 stars 52 forks source link

Readme example typo #34

Closed zyzyis closed 10 years ago

zyzyis commented 10 years ago

In the Readme code example the delimiter doesn't match, the right one should be as below:

(def credentials (oauth/credentials consumer
    (:oauth_token access-token-response)
    (:oauth_token_secret access-token-response)
    :POST
    "http://api.twitter.com/1.1/statuses/update.json"
     {:status "posting from #clojure with #oauth"})) <-- The right delimiter
drone29a commented 10 years ago

Fixing. Thanks for the report!