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))
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