anaconda icon indicating copy to clipboard operation
anaconda copied to clipboard

A Go client library for the Twitter 1.1 API

Results 74 anaconda issues
Sort by recently updated
recently updated
newest added

I am using anaconda for mining hashtag information through the Twitter search API. As the [docs](https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets.html) states user auth allows 180 requests per 15 minutes (around 18000 tweets per 15...

The field "**reply_count**" is not included in the '**anaconda.Tweet**' object. Is there a possibility of getting the reply_count for each tweet, Since both retweet_count and favorite_count are available within the...

From logger, I see it keeps getting "twitter socket closed, leaving loop" and then trying to reconnect until it receives a 420 error from Twittter and backs off for a...

Hi, we updated some exported function comments based on best practices from [Effective Go](https://golang.org/doc/effective_go.html). It’s admittedly a relatively minor fix up. Does this help you?

Usage Pattern for PublicStreamFilter

In anaconda/twitter.go: shouldn't ResourceOwnerAuthorizationURI: "https://api.twitter.com/oauth/authenticate" be set to "https://api.twitter.com/oauth/authorize" according to this: https://developer.twitter.com/en/docs/basics/authentication/overview/3-legged-oauth Or is the assumption here that authorization has already been granted? Thanks

The /trends API has a `tweet_volume` field, which currently doesn't exist on the `Trend` struct. I've made it a pointer since the response from Twitter is often `null`/`nil`. https://developer.twitter.com/en/docs/trends/trends-for-location/api-reference/get-trends-place I've...

This PR enables anaconda to support following two new APIs of DM. - GET [direct_messages/events/list](https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/list-events) - which returns list of Direct Message events (both sent and received). - GET [direct_messages/events/show](https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/get-event)...

(replaces #260; I should not have issued pull request from my master branch) This is an extension to support the Account Activity API, primarily to support enhancements that were made...