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.
2 parents 02c7af5 + 8dd3ce8 commit 7b137ffCopy full SHA for 7b137ff
src/twitter.clj
@@ -69,21 +69,14 @@ take any required and optional arguments and call the associated Twitter method.
69
((first x#)
70
rest-map#)})
71
optional-query-param-names-mapping#)))
72
- need-to-url-encode# (if (= :get ~req-method)
73
- (into {}
74
- (map (fn [[k# v#]]
75
- [k#
76
- (oauth.signature/url-encode v#)])
77
- query-params#))
78
- query-params#)
79
oauth-creds# (when (and *oauth-consumer*
80
*oauth-access-token*)
81
(oauth/credentials *oauth-consumer*
82
*oauth-access-token*
83
*oauth-access-token-secret*
84
~req-method
85
req-uri#
86
- need-to-url-encode#))]
+ query-params#))]
87
(~handler (~(symbol "http" (name req-method))
88
89
:query (merge query-params#
0 commit comments