twitter-api icon indicating copy to clipboard operation
twitter-api copied to clipboard

Async io interface to all the twitter APIs

Results 15 twitter-api issues
Sort by recently updated
recently updated
newest added

This is the stack trace I'm seeing I'm simply running ```clojure (twitter-api/users-profile-banner :oauth-creds cred-test :params {:screen-name "SasaCocic"}) ``` before running this I ran ```clojure (twitter-api/users-show :oauth-creds cred-test :params {:screen-name "SasaCocic"})...

I don't think the new way of uploading media (media-upload-chunked) has been pushed to clojars. https://clojars.org/twitter-api/versions/1.8.0 pushed Feb 18 2017, https://github.com/adamwynne/twitter-api/pull/77 Dec 11 2017

Getting DMs throws an exception: ```Clojure (direct-messages :oauth-creds my-creds :params {:count 50}) ;; Twitter responded to request with error 34: Sorry, that page does ;; not exist. ``` I think...

This library needs fleshed out docs badly.

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

Use #(json/read-str % :eof-error? false :key-fn clojure.core/keyword) instead of json/read-json which is depracated and throws an error when called with an empty string. See https://github.com/adamwynne/twitter-api/issues/78

I have created a very simple piece of code, pretty much following the example ``` (def my-creds (twauth/make-oauth-creds oauth-consumer oauth-consumer-secret oauth-token oauth-token-secret)) (defn -main "I don't do a whole lot...

Calling `make-oauth-creds` with the first supported arity, that is with app-key and app-secret only, will leave open files. The offending function is `request-app-only-token`, with further calls to `execute-request-callbacks` and `callbacks-sync-single-default`....

Hello, I don't understand what should I put in my creds map to make it auth with the bearer token for an app_only auth. Thanks

Calling restful/oauth-request-token returns: Exception Twitter responded to request with error 34: Sorry, that page does not exist sun.reflect.NativeConstructorAccessorImpl.newInstance0 (NativeConstructorAccessorImpl.java:-2) I believe that appending .json to the URL is breaking it.