drone29a / clojure-twitter

Clojure client for Twitter API
BSD 2-Clause "Simplified" License
120 stars 33 forks source link

Multiple requests per oauth #6

Open ronslow opened 13 years ago

ronslow commented 13 years ago

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 twitter ids" (twitter/with-oauth oauth-consumer access-token access-token-secret (map twitter/create-friendship-to-id ids))

) Thanks Robert