├── .github ├── dependabot.yaml └── workflows │ └── test.yaml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.md ├── examples ├── README.md ├── app-auth.go ├── direct_messages.go ├── go.mod ├── go.sum ├── streaming.go └── user-auth.go ├── go.mod ├── go.sum └── twitter ├── accounts.go ├── accounts_test.go ├── backoffs.go ├── backoffs_test.go ├── block.go ├── block_test.go ├── demux.go ├── demux_test.go ├── direct_messages.go ├── direct_messages_test.go ├── doc.go ├── entities.go ├── entities_test.go ├── errors.go ├── errors_test.go ├── favorites.go ├── favorites_test.go ├── followers.go ├── followers_test.go ├── friends.go ├── friends_test.go ├── friendships.go ├── friendships_test.go ├── lists.go ├── lists_test.go ├── premium_search.go ├── premium_search_test.go ├── rate_limits.go ├── rate_limits_test.go ├── search.go ├── search_test.go ├── statuses.go ├── statuses_test.go ├── stream_messages.go ├── stream_utils.go ├── stream_utils_test.go ├── streams.go ├── streams_test.go ├── timelines.go ├── timelines_test.go ├── trends.go ├── trends_test.go ├── twitter.go ├── twitter_test.go ├── users.go └── users_test.go /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /bin -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/app-auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/app-auth.go -------------------------------------------------------------------------------- /examples/direct_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/direct_messages.go -------------------------------------------------------------------------------- /examples/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/go.mod -------------------------------------------------------------------------------- /examples/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/go.sum -------------------------------------------------------------------------------- /examples/streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/streaming.go -------------------------------------------------------------------------------- /examples/user-auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/examples/user-auth.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/go.sum -------------------------------------------------------------------------------- /twitter/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/accounts.go -------------------------------------------------------------------------------- /twitter/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/accounts_test.go -------------------------------------------------------------------------------- /twitter/backoffs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/backoffs.go -------------------------------------------------------------------------------- /twitter/backoffs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/backoffs_test.go -------------------------------------------------------------------------------- /twitter/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/block.go -------------------------------------------------------------------------------- /twitter/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/block_test.go -------------------------------------------------------------------------------- /twitter/demux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/demux.go -------------------------------------------------------------------------------- /twitter/demux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/demux_test.go -------------------------------------------------------------------------------- /twitter/direct_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/direct_messages.go -------------------------------------------------------------------------------- /twitter/direct_messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/direct_messages_test.go -------------------------------------------------------------------------------- /twitter/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/doc.go -------------------------------------------------------------------------------- /twitter/entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/entities.go -------------------------------------------------------------------------------- /twitter/entities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/entities_test.go -------------------------------------------------------------------------------- /twitter/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/errors.go -------------------------------------------------------------------------------- /twitter/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/errors_test.go -------------------------------------------------------------------------------- /twitter/favorites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/favorites.go -------------------------------------------------------------------------------- /twitter/favorites_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/favorites_test.go -------------------------------------------------------------------------------- /twitter/followers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/followers.go -------------------------------------------------------------------------------- /twitter/followers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/followers_test.go -------------------------------------------------------------------------------- /twitter/friends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/friends.go -------------------------------------------------------------------------------- /twitter/friends_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/friends_test.go -------------------------------------------------------------------------------- /twitter/friendships.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/friendships.go -------------------------------------------------------------------------------- /twitter/friendships_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/friendships_test.go -------------------------------------------------------------------------------- /twitter/lists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/lists.go -------------------------------------------------------------------------------- /twitter/lists_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/lists_test.go -------------------------------------------------------------------------------- /twitter/premium_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/premium_search.go -------------------------------------------------------------------------------- /twitter/premium_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/premium_search_test.go -------------------------------------------------------------------------------- /twitter/rate_limits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/rate_limits.go -------------------------------------------------------------------------------- /twitter/rate_limits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/rate_limits_test.go -------------------------------------------------------------------------------- /twitter/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/search.go -------------------------------------------------------------------------------- /twitter/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/search_test.go -------------------------------------------------------------------------------- /twitter/statuses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/statuses.go -------------------------------------------------------------------------------- /twitter/statuses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/statuses_test.go -------------------------------------------------------------------------------- /twitter/stream_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/stream_messages.go -------------------------------------------------------------------------------- /twitter/stream_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/stream_utils.go -------------------------------------------------------------------------------- /twitter/stream_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/stream_utils_test.go -------------------------------------------------------------------------------- /twitter/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/streams.go -------------------------------------------------------------------------------- /twitter/streams_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/streams_test.go -------------------------------------------------------------------------------- /twitter/timelines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/timelines.go -------------------------------------------------------------------------------- /twitter/timelines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/timelines_test.go -------------------------------------------------------------------------------- /twitter/trends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/trends.go -------------------------------------------------------------------------------- /twitter/trends_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/trends_test.go -------------------------------------------------------------------------------- /twitter/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/twitter.go -------------------------------------------------------------------------------- /twitter/twitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/twitter_test.go -------------------------------------------------------------------------------- /twitter/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/users.go -------------------------------------------------------------------------------- /twitter/users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghubble/go-twitter/HEAD/twitter/users_test.go --------------------------------------------------------------------------------